Skip to content

Commit

Permalink
* adjust minimum python requirement to 3.7 as stated in readme
Browse files Browse the repository at this point in the history
* pyxcp is production ready
  • Loading branch information
danielhrisca committed Feb 2, 2023
1 parent b25f764 commit 1fbffaf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def run(self):
"build_py": CustomBuildPy,
"develop": CustomDevelop,
},
python_requires=">=3.6",
python_requires=">=3.7",
include_package_data=True,
install_requires=install_reqs,
extras_require={"docs": ["sphinxcontrib-napoleon"], "develop": ["bumpversion"]},
Expand All @@ -130,7 +130,7 @@ def run(self):
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development",
Expand All @@ -139,7 +139,6 @@ def run(self):
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit 1fbffaf

Please sign in to comment.