Skip to content

Commit

Permalink
REL: restrict supported Python version
Browse files Browse the repository at this point in the history
See #8
  • Loading branch information
elcorto committed Jul 9, 2024
1 parent 87e3efd commit d466c52
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.8, <3.12",
package_data={"pwtools": ["*.so"]},
cmdclass={
"build_py": make_cmd_class(build_py),
Expand Down

0 comments on commit d466c52

Please sign in to comment.