Skip to content

Commit

Permalink
REL: drop support for Python 3.8
Browse files Browse the repository at this point in the history
CI with meson fails with 3.8, also numpy 2 (which we don't use yet) will
support >= 3.9, so time to let go.
  • Loading branch information
elcorto committed Jul 19, 2024
1 parent cf64fb9 commit 019a5cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def run(self):
packages=find_packages(where="src", exclude="pwtools/src"),
install_requires=open("requirements.txt").read().splitlines(),
setup_requires=["numpy"],
python_requires=">=3.8",
python_requires=">=3.9",
package_data={"pwtools": ["*.so"]},
cmdclass={
"build_py": make_cmd_class(build_py),
Expand Down

0 comments on commit 019a5cc

Please sign in to comment.