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.
This commit is contained in:
Matthew Feickert
2023-01-18 23:37:24 -06:00
committed by GitHub
parent 61c324da43
commit 16a17a3ca7
+1 -1
View File
@@ -94,7 +94,7 @@ setup(
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,