Skip to content

Commit

Permalink
Removed upper bound on Python version
Browse files Browse the repository at this point in the history
This is unnecessary (Python is not SemVer'ed) and breaks dependency solvers.

See https://github.com/orgs/python-poetry/discussions/3757#discussioncomment-435337
  • Loading branch information
spookylukey committed Jun 7, 2023
1 parent fb46c6e commit 6eee318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
]),
include_package_data=True,
zip_safe=False,
python_requires='>=3.7, <4',
python_requires='>=3.7',
install_requires=install_requires,
tests_require=tests_require,
extras_require={
Expand Down

0 comments on commit 6eee318

Please sign in to comment.