Skip to content

Commit

Permalink
Allow testing on 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Apr 17, 2023
1 parent b7192fc commit 9c2d531
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def test_suite():


major_version, minor_version = sys.version_info[:2]
if not (major_version == 3 and 7 <= minor_version <= 11):
sys.stderr.write("Sorry, only Python 3.7 - 3.11 are "
if not (major_version == 3 and 7 <= minor_version <= 12):
sys.stderr.write("Sorry, only Python 3.7 - 3.12 are "
"supported at this time.\n")
exit(1)

Expand All @@ -48,7 +48,7 @@ def test_suite():
package_data={"geojson": ["*.rst"]},
install_requires=[],
test_suite="setup.test_suite",
python_requires=">=3.7, <3.12",
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 9c2d531

Please sign in to comment.