Skip to content

Commit e4b56bd

Browse files
author
Tim Schneider
committed
Removed python 3.8 from wheel builds as the current manylinux version does not support it. Added python 3.7 back to setup.py, as it will still work, despite no wheels being available.
1 parent 9ec2f93 commit e4b56bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_wheels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
type: string
99

1010
env:
11-
PYBIN_SUPPORTED_VERSIONS: "cp3(8|9|10|11|12)"
11+
PYBIN_SUPPORTED_VERSIONS: "cp3(9|10|11|12)"
1212

1313
jobs:
1414
build_wheels:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ def build_extension(self, ext):
7878
"Programming Language :: C++",
7979
],
8080
install_requires=["numpy"],
81-
python_requires=">=3.8",
81+
python_requires=">=3.7",
8282
zip_safe=False,
8383
)

0 commit comments

Comments
 (0)