|
17 | 17 |
|
18 | 18 | # this is for sdist to work.
|
19 | 19 | import sys
|
20 | | -if sys.version_info < (3, 5): |
21 | | - raise RuntimeError('This version requires Python 3.5+') # pragma: no cover |
| 20 | +if sys.version_info < (3, 7): |
| 21 | + raise RuntimeError('This version requires Python 3.7+') # pragma: no cover |
22 | 22 |
|
23 | 23 | setup(
|
24 | 24 | name = 'unittest-xml-reporting',
|
|
31 | 31 | install_requires = ['lxml'],
|
32 | 32 | license = 'BSD',
|
33 | 33 | platforms = ['Any'],
|
34 | | - python_requires='>=3.5', |
| 34 | + python_requires='>=3.7', |
35 | 35 | keywords = [
|
36 | 36 | 'pyunit', 'unittest', 'junit xml', 'xunit', 'report', 'testrunner', 'xmlrunner'
|
37 | 37 | ],
|
|
44 | 44 | 'Operating System :: OS Independent',
|
45 | 45 | 'Programming Language :: Python',
|
46 | 46 | 'Programming Language :: Python :: 3',
|
47 | | - 'Programming Language :: Python :: 3.5', |
48 | | - 'Programming Language :: Python :: 3.6', |
| 47 | + 'Programming Language :: Python :: 3 :: Only', |
49 | 48 | 'Programming Language :: Python :: 3.7',
|
| 49 | + 'Programming Language :: Python :: 3.8', |
| 50 | + 'Programming Language :: Python :: 3.9', |
| 51 | + 'Programming Language :: Python :: 3.10', |
50 | 52 | 'Programming Language :: Python :: Implementation :: CPython',
|
51 | 53 | 'Programming Language :: Python :: Implementation :: PyPy',
|
52 | 54 | 'Topic :: Software Development :: Libraries :: Python Modules',
|
|
0 commit comments