Skip to content

Commit

Permalink
Handle pypy3.8 test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushikcfd committed Mar 1, 2025
1 parent 2c13941 commit 5e6f0c1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,12 @@ known-local-folder = [
lines-after-imports = 2

[tool.cibuildwheel]
# nanobind does not support Py<3.8
skip = ["*-win-*", "[cp]p3[67]-*"]
skip = [
"*-win-*",
"[cp]p3[67]-*", # nanobind does not support Py<3.8
"pp38-*", # observing some test failures for pypy3.8

]
test-requires = "pytest"
test-command = "pytest {project}/test"

Expand Down

0 comments on commit 5e6f0c1

Please sign in to comment.