Skip to content

Commit

Permalink
Not supporting Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
shakedzy committed Dec 13, 2022
1 parent f35d319 commit f8a312b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
EXTRAS_REQUIRE = {"dev": [s.strip() for s in dev_requirements.split("\n")]}

CLASSIFIERS = [
f"Programming Language :: Python :: 3.{str(v)}" for v in range(7, 12)
f"Programming Language :: Python :: 3.{str(v)}" for v in range(8, 12)
]
PYTHON_REQUIRES = ">=3.7"
PYTHON_REQUIRES = ">=3.8"

setup(
name=PACKAGE_NAME,
Expand Down

0 comments on commit f8a312b

Please sign in to comment.