|
36 | 36 | fast_requires = numba_requires # For performance acceleration |
37 | 37 | all_requires = test_requires + doc_requires + numba_requires |
38 | 38 |
|
39 | | -if sys.version_info[:2] < (3, 5): |
40 | | - raise RuntimeError("Python version >=3.5 required.") |
41 | | -elif sys.version_info[:2] >= (3, 6): |
| 39 | +if sys.version_info[:2] < (3, 8): |
| 40 | + raise RuntimeError("Python version >=3.8 required.") |
| 41 | +else: |
42 | 42 | test_requires += ["black"] |
43 | 43 |
|
44 | 44 | version_py = os.path.join(os.path.dirname(__file__), "graphtools", "version.py") |
|
87 | 87 | "Operating System :: MacOS :: MacOS X", |
88 | 88 | "Operating System :: Microsoft :: Windows", |
89 | 89 | "Operating System :: POSIX :: Linux", |
90 | | - "Programming Language :: Python :: 2", |
91 | | - "Programming Language :: Python :: 2.7", |
92 | 90 | "Programming Language :: Python :: 3", |
93 | | - "Programming Language :: Python :: 3.5", |
94 | | - "Programming Language :: Python :: 3.6", |
| 91 | + "Programming Language :: Python :: 3.8", |
| 92 | + "Programming Language :: Python :: 3.9", |
| 93 | + "Programming Language :: Python :: 3.10", |
| 94 | + "Programming Language :: Python :: 3.11", |
95 | 95 | "Topic :: Scientific/Engineering :: Mathematics", |
96 | 96 | ], |
97 | 97 | ) |
0 commit comments