Skip to content

Commit

Permalink
Use >=3.9 in python_requires in setup.py
Browse files Browse the repository at this point in the history
This is needed for `sdist`s & `whl`s to restrict Python version.
  • Loading branch information
jakirkham committed Aug 3, 2023
1 parent 67540af commit d85c89a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -61,7 +61,7 @@ def run_tests(self):
cmdclass=cmdclasses,
packages=setuptools.find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires='>=3.8',
python_requires='>=3.9',
install_requires=requirements,
license="BSD 3-Clause",
zip_safe=False,
Expand Down

0 comments on commit d85c89a

Please sign in to comment.