Skip to content

Commit

Permalink
Updates setup.py's Python versions (#285)
Browse files Browse the repository at this point in the history
* Bump `python_requires` to 3.8

* Update Python versions in trove classifiers
  • Loading branch information
jakirkham committed Mar 13, 2023
1 parent b43e6cb commit 8249052
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def run_tests(self):
cmdclass=cmdclasses,
packages=setuptools.find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires='>=3.6',
python_requires='>=3.8',
install_requires=requirements,
license="BSD 3-Clause",
zip_safe=False,
Expand All @@ -70,10 +70,10 @@ def run_tests(self):
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
tests_require=test_requirements
)

0 comments on commit 8249052

Please sign in to comment.