Skip to content

Commit 16a17a3

Browse files
fix: Remove '<4' from python_requires (#6333)
* 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.
1 parent 61c324d commit 16a17a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def run_tests(self):
9494
package_data={"": ["LICENSE", "NOTICE"]},
9595
package_dir={"requests": "requests"},
9696
include_package_data=True,
97-
python_requires=">=3.7, <4",
97+
python_requires=">=3.7",
9898
install_requires=requires,
9999
license=about["__license__"],
100100
zip_safe=False,

0 commit comments

Comments
 (0)