Skip to content

Commit 1067a5e

Browse files
authored
ci: fix abi3 wheel build by specifying python3.9 interpreter (#749)
1 parent 1640742 commit 1067a5e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/bindings.python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
base_args="--release --strip --out dist"
8888
fi
8989
if [[ "${{ matrix.wheel }}" == "py39-abi" ]]; then
90-
wheel_args="--features py39-abi"
90+
wheel_args="--features py39-abi --interpreter python3.9"
9191
else
9292
wheel_args="--no-default-features --features cp38 --interpreter python3.8"
9393
fi

.github/workflows/cron.integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: |
6565
base_args="--release --strip --out dist"
6666
if [[ "${{ matrix.wheel }}" == "py39-abi" ]]; then
67-
wheel_args="--features py39-abi"
67+
wheel_args="--features py39-abi --interpreter python3.9"
6868
else
6969
wheel_args="--no-default-features --features cp38 --interpreter python3.8"
7070
fi

0 commit comments

Comments
 (0)