Skip to content

Commit

Permalink
Merge pull request #19 from rgommers/fix-version-number
Browse files Browse the repository at this point in the history
BLD: fix dev version numbering to comply with PEP 440
  • Loading branch information
rgommers authored Nov 30, 2022
2 parents e075638 + ae06c0c commit 5c1487d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def get_version_info():
GIT_REVISION = "Unknown"

if not ISRELEASED:
FULLVERSION += '.dev-' + GIT_REVISION[:7]
FULLVERSION += '.dev0+' + GIT_REVISION[:7]

return FULLVERSION, GIT_REVISION

Expand Down

0 comments on commit 5c1487d

Please sign in to comment.