We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae578bb commit 855cd02Copy full SHA for 855cd02
.github/workflows/buildwheel.yml
@@ -14,10 +14,13 @@ jobs:
14
15
steps:
16
- uses: actions/checkout@v3
17
+
18
- uses: actions/setup-python@v4
19
+ with:
20
+ python-version: '3.10'
21
22
- name: Build wheels
- uses: pypa/cibuildwheel@v2.3.1
23
+ uses: pypa/cibuildwheel@v2.11.2
24
env:
25
CIBW_BUILD: cp39-* cp310-* cp311-*
26
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux_*"
@@ -31,7 +34,7 @@ jobs:
31
34
LD_LIBRARY_PATH=$(pwd)/.local/lib:$LD_LIBRARY_PATH
32
35
CIBW_TEST_COMMAND: python -c 'import flint; print(str(flint.fmpz(2)))'
33
36
- - uses: actions/upload-artifact@v2
37
+ - uses: actions/upload-artifact@v3
38
with:
39
path: wheelhouse/*.whl
40
0 commit comments