Skip to content

Commit

Permalink
Skip 32bit musllinux on 313
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Sep 24, 2024
1 parent 21ade47 commit 4c6d2b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ omit =[

[tool.cibuildwheel]
build = "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
skip = "cp313-musllinux_i686"
build-frontend = "build"
build-verbosity = 1
#test-requires = [ "-r requirements/tests-strict.txt",]
Expand Down
4 changes: 2 additions & 2 deletions tests/test_explicit_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ def _demo_explicit_profile_script():
@profile
def fib(n):
a, b = 0, 1
while a < n:
for _ in range(n):
a, b = b, a + b
return a
fib(10)
''')

Expand Down

0 comments on commit 4c6d2b0

Please sign in to comment.