We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a52bd9 commit 5f708f4Copy full SHA for 5f708f4
.github/workflows/build.yml
@@ -40,13 +40,14 @@ jobs:
40
41
- name: Build wheels
42
env:
43
- CIBW_BUILD: "cp3?-*"
+ CIBW_BUILD: "cp38-* cp39-* cp31?-*"
44
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
45
CIBW_ARCHS_WINDOWS: ${{ matrix.arch }}
46
CIBW_ARCHS_MACOS: universal2
47
CIBW_TEST_COMMAND: "python -c \"import pywaves_curve25519\""
48
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
49
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
50
+ CIBW_ENVIRONMENT: "GITHUB_REF=${{ github.ref }}"
51
run: python -m cibuildwheel --output-dir wheelhouse
52
53
- name: Build sdist
@@ -78,9 +79,7 @@ jobs:
78
79
steps:
80
- uses: actions/download-artifact@v4
81
with:
- pattern: |
82
- sdist
83
- wheels
+ pattern: "*"
84
merge-multiple: true
85
path: dist
86
0 commit comments