changed publishing workflow file to hopefully avoid making a new PyPi package every push to main, and incremented version patch number

This commit is contained in:
Tristan Lee
2023-09-21 06:14:59 -05:00
parent 8a416c098d
commit efa3a47984
2 changed files with 1 additions and 2 deletions

View File

@@ -12,7 +12,6 @@ on:
release:
types: [published]
push:
branches: [ "main" ]
tags: [ "v*.*.*" ]
permissions:

View File

@@ -2,7 +2,7 @@ _MAJOR = "2"
_MINOR = "0"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "1"
_PATCH = "2"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""