Skip to content

Commit 4c6d2b0

Browse files
committed
Skip 32bit musllinux on 313
1 parent 21ade47 commit 4c6d2b0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ omit =[
3636

3737
[tool.cibuildwheel]
3838
build = "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
39+
skip = "cp313-musllinux_i686"
3940
build-frontend = "build"
4041
build-verbosity = 1
4142
#test-requires = [ "-r requirements/tests-strict.txt",]

tests/test_explicit_profile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ def _demo_explicit_profile_script():
3434
@profile
3535
def fib(n):
3636
a, b = 0, 1
37-
while a < n:
37+
for _ in range(n):
3838
a, b = b, a + b
39-
39+
return a
4040
fib(10)
4141
''')
4242

0 commit comments

Comments
 (0)