Skip to content

Commit

Permalink
limit python to 3.8-3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bmos committed Mar 14, 2024
1 parent 0101a13 commit 99fb434
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


def main():

limited_deps = os.environ.get("PARSONS_LIMITED_DEPENDENCIES", "")
if limited_deps.strip().upper() in ("1", "YES", "TRUE", "ON"):
install_requires = [
Expand Down Expand Up @@ -82,12 +81,11 @@ def main():
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.7.0,<3.11.0",
python_requires=">=3.8.0,<3.11.0",
long_description=long_description,
long_description_content_type='text/markdown'
)
Expand Down

0 comments on commit 99fb434

Please sign in to comment.