Skip to content

Commit 446cc3a

Browse files
committed
Call python explicitly on Windows
1 parent 2098a54 commit 446cc3a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,10 @@ package = "flint"
8686
[tool.cibuildwheel]
8787
skip = "*-win32 *-manylinux_i686 *-manylinux_armv7l *-musllinux_*"
8888

89-
# Enable building for free-threaded CPython builds
9089
enable = [
91-
"cpython-prerelease", # for 3.14rc1 (remove this later)
90+
# Uncomment this to test beta versions of CPython in CI (but comment out
91+
# again if releasing while CPython is in beta):
92+
# "cpython-prerelease",
9293
"cpython-freethreading",
9394
"pypy",
9495
]
@@ -134,7 +135,7 @@ repair-wheel-command = [
134135
before-all = "C:\\msys64\\usr\\bin\\bash bin/cibw_before_all_windows.sh"
135136
before-build = "pip install wheel delvewheel"
136137
repair-wheel-command = [
137-
"""bin/cibw_repair_wheel_licenses.py {wheel} \
138+
"""python bin/cibw_repair_wheel_licenses.py {wheel} \
138139
--license-file wheels/LICENSE_windows_wheels.txt \
139140
""",
140141
"delvewheel repair -w {dest_dir} {wheel} --add-path .local/bin",

0 commit comments

Comments
 (0)