Skip to content

Commit

Permalink
BLD: fix dev version numbering to comply with PEP 440
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Nov 30, 2022
1 parent 46dcfb4 commit ae06c0c
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 @@ -93,7 +93,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 ae06c0c

Please sign in to comment.