Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
Revert Python snapshot release naming for PEP 440 validity
Browse files Browse the repository at this point in the history
Change Python snapshot release naming from using `-SNAPSHOT` as a
post-fix to `-dev` so we're generating valid PEP 440 version strings.

Resolve #44
  • Loading branch information
MJJoyce committed Sep 22, 2021
1 parent 78c4fe1 commit 25dc5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pds_github_util/release/python_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)

SNAPSHOT_TAG_SUFFIX = "-SNAPSHOT"
SNAPSHOT_TAG_SUFFIX = "-dev"


def python_get_version(workspace=None):
Expand Down

0 comments on commit 25dc5c4

Please sign in to comment.