Skip to content

Commit

Permalink
raise requirements from python>=3.6 to python>=3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
katosh committed Oct 31, 2023
1 parent d6f93f4 commit 7ef0260
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions setup.py
Expand Up @@ -2,11 +2,6 @@
from setuptools import setup
from warnings import warn

if sys.version_info.major != 3:
raise RuntimeError("Palantir requires Python 3")
if sys.version_info.minor < 6:
warn("Analysis methods were developed using Python 3.6")

# get version and other attributes
version_info = {}
with open("src/palantir/version.py") as f:
Expand Down Expand Up @@ -49,5 +44,5 @@
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
python_requires=">=3.6",
python_requires=">=3.8",
)

0 comments on commit 7ef0260

Please sign in to comment.