-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] feat: don't build for Python 3.8 anymore
Signed-off-by: Christopher Arndt <[email protected]>
- Loading branch information
1 parent
bc873ee
commit b5b3edc
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ authors = [ | |
{ name="Christopher Arndt", email="[email protected]" }, | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: MacOS X", | ||
|
@@ -90,7 +90,6 @@ markers = [ | |
[tool.cibuildwheel] | ||
# Switch to using build | ||
build-frontend = "build" | ||
skip = "pp*" | ||
manylinux-x86_64-image = "manylinux_2_28" | ||
manylinux-aarch64-image = "manylinux_2_28" | ||
# Run the package tests using `pytest` | ||
|
@@ -99,7 +98,7 @@ test-command = "pytest -v -m ci {package}/tests" | |
|
||
# Install system library | ||
[tool.cibuildwheel.linux] | ||
build = ["cp3{8,9,10,11,12}-manylinux*", "pypy3{8,9,10}-manylinux*"] | ||
build = ["cp3{9,10,11,12}-manylinux*", "pypy3{9,10}-manylinux*"] | ||
archs = ["auto64"] | ||
before-all = [ | ||
"dnf -y install alsa-lib-devel alsa-utils", | ||
|
@@ -117,5 +116,5 @@ build = "cp3{8,9,10,11,12}-macosx*" | |
archs = ["x86_64", "arm64"] | ||
|
||
[tool.cibuildwheel.windows] | ||
build = "cp3{8,9,10,11,12}-win*" | ||
build = "cp3{9,10,11,12}-win*" | ||
archs = ["AMD64"] |