|
5 | 5 | from sys import version_info
|
6 | 6 |
|
7 | 7 | py_version = version_info[:2]
|
8 |
| -if not (2, 6) <= py_version <= (2, 7) and not (3, 4) <= py_version < (4, 0): |
| 8 | +if py_version != (2, 7) and not (3, 5) <= py_version < (4, 0): |
9 | 9 | raise ImportError('Python %d.%d is not supported by DBUtils.' % py_version)
|
10 | 10 |
|
11 | 11 | warnings.filterwarnings('ignore', 'Unknown distribution option')
|
|
27 | 27 | 'License :: OSI Approved :: MIT License',
|
28 | 28 | 'Programming Language :: Python',
|
29 | 29 | 'Programming Language :: Python :: 2',
|
30 |
| - 'Programming Language :: Python :: 2.6', |
31 | 30 | 'Programming Language :: Python :: 2.7',
|
32 | 31 | 'Programming Language :: Python :: 3',
|
33 |
| - 'Programming Language :: Python :: 3.4', |
34 | 32 | 'Programming Language :: Python :: 3.5',
|
35 | 33 | 'Programming Language :: Python :: 3.6',
|
36 | 34 | 'Programming Language :: Python :: 3.7',
|
| 35 | + 'Programming Language :: Python :: 3.8', |
37 | 36 | 'Topic :: Database',
|
38 | 37 | 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
39 | 38 | 'Topic :: Software Development :: Libraries :: Python Modules'
|
|
0 commit comments