We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b960ce commit 6732b4dCopy full SHA for 6732b4d
1 file changed
setup.py
@@ -15,6 +15,11 @@
15
from numpy.distutils.misc_util import get_numpy_include_dirs
16
17
18
+# Use this version when git data are not available, like in git zip archive.
19
+# Update when tagging a new release.
20
+FALLBACK_VERSION = '1.1.post0'
21
+
22
23
# define extension arguments here
24
ext_kws = {
25
'libraries' : ['diffpy'],
@@ -67,10 +72,6 @@ def create_extensions():
67
72
return [ext]
68
73
69
74
70
-# Use this version when git data are not available, like in git zip archive.
71
-# Update when tagging a new release.
-FALLBACK_VERSION = '1.1a1.post0'
-
75
# versioncfgfile holds version data for git commit hash and date.
76
# It must reside in the same directory as version.py.
77
MYDIR = os.path.dirname(os.path.abspath(__file__))
0 commit comments