Skip to content

Commit

Permalink
Removed python 3.8 from wheel builds as the current manylinux version…
Browse files Browse the repository at this point in the history
… does not support it. Added python 3.7 back to setup.py, as it will still work, despite no wheels being available.
  • Loading branch information
Tim Schneider committed Dec 2, 2024
1 parent 9ec2f93 commit e4b56bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
type: string

env:
PYBIN_SUPPORTED_VERSIONS: "cp3(8|9|10|11|12)"
PYBIN_SUPPORTED_VERSIONS: "cp3(9|10|11|12)"

jobs:
build_wheels:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ def build_extension(self, ext):
"Programming Language :: C++",
],
install_requires=["numpy"],
python_requires=">=3.8",
python_requires=">=3.7",
zip_safe=False,
)

0 comments on commit e4b56bd

Please sign in to comment.