|
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() |
@@ -221,9 +221,10 @@ def get_gsl_config(): |
221 | 221 | 'Operating System :: POSIX', |
222 | 222 | 'Programming Language :: C++', |
223 | 223 | 'Programming Language :: Python :: 2.7', |
224 | | - 'Programming Language :: Python :: 3.5', |
225 | | - 'Programming Language :: Python :: 3.6', |
226 | 224 | 'Programming Language :: Python :: 3.7', |
| 225 | + 'Programming Language :: Python :: 3.8', |
| 226 | + 'Programming Language :: Python :: 3.9', |
| 227 | + 'Programming Language :: Python :: 3.10', |
227 | 228 | 'Topic :: Scientific/Engineering :: Chemistry', |
228 | 229 | 'Topic :: Scientific/Engineering :: Physics', |
229 | 230 | ], |
|
0 commit comments