|
18 | 18 |
|
19 | 19 | # Use this version when git data are not available, like in git zip archive. |
20 | 20 | # Update when tagging a new release. |
21 | | -FALLBACK_VERSION = '1.2.0.post0' |
| 21 | +FALLBACK_VERSION = '1.3.0' |
22 | 22 |
|
23 | 23 | # determine if we run with Python 3. |
24 | 24 | PY3 = (sys.version_info[0] == 3) |
|
33 | 33 | def gitinfo(): |
34 | 34 | from subprocess import Popen, PIPE |
35 | 35 | kw = dict(stdout=PIPE, cwd=MYDIR, universal_newlines=True) |
36 | | - proc = Popen(['git', 'describe', '--match=v[[:digit:]]*'], **kw) |
| 36 | + proc = Popen(['git', 'describe', '--tags', '--match=v[[:digit:]]*'], **kw) |
37 | 37 | desc = proc.stdout.read() |
38 | 38 | proc = Popen(['git', 'log', '-1', '--format=%H %ct %ci'], **kw) |
39 | 39 | glog = proc.stdout.read() |
@@ -224,6 +224,9 @@ def get_gsl_config(): |
224 | 224 | 'Programming Language :: Python :: 3.5', |
225 | 225 | 'Programming Language :: Python :: 3.6', |
226 | 226 | 'Programming Language :: Python :: 3.7', |
| 227 | + 'Programming Language :: Python :: 3.8', |
| 228 | + 'Programming Language :: Python :: 3.9', |
| 229 | + 'Programming Language :: Python :: 3.10', |
227 | 230 | 'Topic :: Scientific/Engineering :: Chemistry', |
228 | 231 | 'Topic :: Scientific/Engineering :: Physics', |
229 | 232 | ], |
|
0 commit comments