8000 BLD: PEP 440 by argriffing · Pull Request #5387 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BLD: PEP 440 #5387

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 24, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
BLD: for PEP 440 compliance, change development version name format f…
…rom e.g. 1.10.0.dev-243ab56 to 1.10.0.dev+243ab56
  • Loading branch information
alexbrc committed Dec 23, 2014
commit c683a43a23be09eda868a6be2427e4c9ef583447
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def get_version_info():
GIT_REVISION = "Unknown"

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

return FULLVERSION, GIT_REVISION

Expand Down
0