Skip to content

Commit 9c5ec8b

Browse files
authored
Merge pull request #86 from KrishnaswamyLab/minor-prerelease
Minor corrections on setup to account for new python versions
2 parents b379107 + add91da commit 9c5ec8b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
fast_requires = numba_requires # For performance acceleration
3737
all_requires = test_requires + doc_requires + numba_requires
3838

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:
4242
test_requires += ["black"]
4343

4444
version_py = os.path.join(os.path.dirname(__file__), "graphtools", "version.py")
@@ -87,11 +87,11 @@
8787
"Operating System :: MacOS :: MacOS X",
8888
"Operating System :: Microsoft :: Windows",
8989
"Operating System :: POSIX :: Linux",
90-
"Programming Language :: Python :: 2",
91-
"Programming Language :: Python :: 2.7",
9290
"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",
9595
"Topic :: Scientific/Engineering :: Mathematics",
9696
],
9797
)

0 commit comments

Comments
 (0)