Skip to content

Commit

Permalink
fix: Remove '<4' from python_requires (#6333)
Browse files Browse the repository at this point in the history
* As discussed in https://discuss.python.org/t/use-of-less-than-next-major-version-e-g-4-in-python-requires-setup-py/1066
  and other places by the PyPA, use of upper bounds with python_requires
  for future versions of Python is unintended use of python_requires and
  actively discouraged.
  • Loading branch information
matthewfeickert committed Jan 19, 2023
1 parent 61c324d commit 16a17a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -94,7 +94,7 @@ def run_tests(self):
package_data={"": ["LICENSE", "NOTICE"]},
package_dir={"requests": "requests"},
include_package_data=True,
python_requires=">=3.7, <4",
python_requires=">=3.7",
install_requires=requires,
license=about["__license__"],
zip_safe=False,
Expand Down

0 comments on commit 16a17a3

Please sign in to comment.