Skip to content

Commit

Permalink
Merge pull request #207 from harfbuzz/ci
Browse files Browse the repository at this point in the history
Try to fix CI build by dropping wheels for Python < 3.8
  • Loading branch information
khaledhosny authored Sep 15, 2024
2 parents 205c702 + c66fff7 commit 3a15def
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ requires = [
build-backend = "setuptools.build_meta"

[tool.cibuildwheel]
# only build for 64-bit
skip = ["*-manylinux_i686", "*-musllinux_i686"]
# Skip unsupported Python versions, and only build for 64-bit on Linux
skip = ["cp36-*", "cp37-*", "*-manylinux_i686", "*-musllinux_i686"]

test-requires = "pytest"
test-command = "pytest {project}/tests"
Expand Down

0 comments on commit 3a15def

Please sign in to comment.