Skip to content

Commit 7881c5b

Browse files
authored
Fix building windows abi3 wheels (#681)
* It's debugging time * hack hack hack
1 parent ffa0e2c commit 7881c5b

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/wheel-builder.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@ jobs:
9393
# is installed in the container (which it is)
9494
sed -i "s:ID=alpine:ID=NotpineForGHA:" /etc/os-release
9595
if: startsWith(matrix.MANYLINUX.NAME, 'musllinux') && endsWith(matrix.MANYLINUX.NAME, 'aarch64')
96-
- uses: actions/checkout@v3.6.0
97-
with:
98-
# The tag to build or the tag received by the tag event
99-
ref: ${{ github.event.inputs.version || github.ref }}
10096
- run: /opt/python/${{ matrix.PYTHON.VERSION }}/bin/python -m venv .venv
10197
- name: Install python dependencies
10298
run: .venv/bin/pip install -U pip wheel setuptools-rust
@@ -136,11 +132,6 @@ jobs:
136132
BIN_PATH: '/Library/Frameworks/Python.framework/Versions/3.11/bin/python3'
137133
name: "Python ${{ matrix.PYTHON.VERSION }} for ABI ${{ matrix.PYTHON.ABI_VERSION }} on macOS"
138134
steps:
139-
- uses: actions/checkout@v3.6.0
140-
with:
141-
# The tag to build or the tag received by the tag event
142-
ref: ${{ github.event.inputs.version || github.ref }}
143-
persist-credentials: false
144135
- run: |
145136
curl "${{ matrix.PYTHON.DOWNLOAD_URL }}" -o python.pkg
146137
sudo installer -pkg python.pkg -target /
@@ -187,14 +178,9 @@ jobs:
187178
- {ARCH: 'x86', RUST_TRIPLE: 'i686-pc-windows-msvc'}
188179
- {ARCH: 'x64', RUST_TRIPLE: 'x86_64-pc-windows-msvc'}
189180
PYTHON:
190-
- {VERSION: "3.7", ABI_VERSION: "cp37"}
181+
- {VERSION: "3.11", ABI_VERSION: "cp37"}
191182
name: "${{ matrix.PYTHON.VERSION }} ${{ matrix.PYTHON.ABI_VERSION }} ${{ matrix.WINDOWS.ARCH }}"
192183
steps:
193-
- uses: actions/checkout@v3.6.0
194-
with:
195-
# The tag to build or the tag received by the tag event
196-
ref: ${{ github.event.inputs.version || github.ref }}
197-
persist-credentials: false
198184
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
199185
with:
200186
name: bcrypt-sdist

0 commit comments

Comments
 (0)