Skip to content

Commit

Permalink
[ci] feat: don't build for Python 3.8 anymore
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Arndt <[email protected]>
  • Loading branch information
SpotlightKid committed May 25, 2024
1 parent bc873ee commit b5b3edc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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`
Expand All @@ -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",
Expand All @@ -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"]

0 comments on commit b5b3edc

Please sign in to comment.