File tree 3 files changed +9
-8
lines changed 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 43
43
CIBW_BEFORE_ALL_WINDOWS : msys2 -c bin/cibw_before_all_windows.sh
44
44
CIBW_BEFORE_BUILD_WINDOWS : msys2 -c bin/cibw_before_build_windows.sh
45
45
CIBW_BEFORE_BUILD : pip install numpy setuptools cython delvewheel
46
- CIBW_ENVIRONMENT : >
47
- C_INCLUDE_PATH=$(pwd)/.local/include/
48
- LIBRARY_PATH=$(pwd)/.local/lib/
49
- LD_LIBRARY_PATH=$(pwd)/.local/lib:$LD_LIBRARY_PATH
50
46
51
47
- uses : actions/upload-artifact@v4
52
48
with :
Original file line number Diff line number Diff line change 8
8
9
9
rm -f wheelhouse/*
10
10
11
- # bin/build_dependencies_unix.sh places headers and shared libraries under .local
12
- export CIBW_ENVIRONMENT=' C_INCLUDE_PATH=$(pwd)/.local/include/ LIBRARY_PATH=$(pwd)/.local/lib/ LD_LIBRARY_PATH=$(pwd)/.local/lib:$LD_LIBRARY_PATH'
13
-
14
11
export CIBW_BUILD=' cp39-* cp310-* cp311-* cp312-*'
15
12
# export CIBW_BUILD='cp311-*'
16
13
export CIBW_SKIP=' *-win32 *-manylinux_i686 *-musllinux_*'
Original file line number Diff line number Diff line change @@ -24,10 +24,18 @@ content-type = "text/markdown"
24
24
[tool .cibuildwheel ]
25
25
test-command = " python -c 'import flint; print(str(flint.fmpz(2)))'"
26
26
27
+ [tool .cibuildwheel .environment ]
28
+ # bin/build_dependencies_unix.sh places headers and shared libraries under .local
29
+ C_INCLUDE_PATH = " $(pwd)/.local/include/"
30
+ LIBRARY_PATH = " $(pwd)/.local/lib/"
31
+ LD_LIBRARY_PATH = " $(pwd)/.local/lib:$LD_LIBRARY_PATH"
32
+
27
33
[tool .cibuildwheel .linux ]
28
34
29
35
[tool .cibuildwheel .macos ]
30
36
31
37
[tool .cibuildwheel .windows ]
32
- environment = { PYTHON_FLINT_MINGW64 =" true" }
33
38
repair-wheel-command = " bin\\ cibw_repair_wheel_command_windows.bat {dest_dir} {wheel}"
39
+
40
+ [tool .cibuildwheel .windows .environment ]
41
+ PYTHON_FLINT_MINGW64 = " true"
You can’t perform that action at this time.
0 commit comments