We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58e6360 commit d5ed744Copy full SHA for d5ed744
setup.py
@@ -79,7 +79,7 @@ def _minimal_ext_cmd(cmd):
79
out = _minimal_ext_cmd(['git', 'rev-parse', 'HEAD'])
80
GIT_REVISION = out.strip()
81
except OSError:
82
- GIT_REVISION = "Unknwn"
+ GIT_REVISION = "Unknown"
83
84
return GIT_REVISION
85
@@ -114,9 +114,9 @@ def write_version_py(filename='numpy/version.py'):
114
# must be a source distribution, use existing version file
115
from numpy.version import git_revision as GIT_REVISION
116
else:
117
118
119
- FULL_VERSION += GIT_REVISION[:6]
+ FULL_VERSION += GIT_REVISION[:7]
120
121
a = open(filename, 'w')
122
try:
0 commit comments