Skip to content

Commit

Permalink
ci: try to fix PyPy failures in a different way
Browse files Browse the repository at this point in the history
  • Loading branch information
ntamas committed Sep 3, 2024
1 parent 17cdf3a commit 9d2c910
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
env:
CIBW_ENVIRONMENT_PASS_LINUX: PYTEST_TIMEOUT
CIBW_TEST_COMMAND: "cd {project} && pip install --prefer-binary '.[test]' && python -m pytest -v tests"
CIBW_SKIP: "cp36-* cp37-* pp37-* pp38-* pp39-*"
CIBW_SKIP: "cp36-* cp37-* pp37-*"
PYTEST_TIMEOUT: 60
MACOSX_DEPLOYMENT_TARGET: "10.9"

Expand Down
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[build-system]
requires = ["setuptools", "wheel"]
requires = [
"wheel",
# pin setuptools:
# https://github.com/airspeed-velocity/asv/pull/1426#issuecomment-2290658198
"setuptools>=64,<72.2.0"
]
build-backend = "setuptools.build_meta"

[tool.ruff]
Expand Down

0 comments on commit 9d2c910

Please sign in to comment.