Skip to content

Commit

Permalink
Switch the linux version and fix the wheel platform tag
Browse files Browse the repository at this point in the history
  • Loading branch information
tbttfox committed Nov 9, 2023
1 parent 9d354ac commit e7e4c76
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,8 @@ jobs:
path: dist/*.whl

python-linux:
runs-on: ubuntu-latest
# Use 20.04 for glibc 2.17
runs-on: ubuntu-20.04

strategy:
fail-fast: false
Expand Down Expand Up @@ -330,7 +331,7 @@ jobs:
python3 -m build --wheel
for PY_WHEEL in dist/*.whl
do
python3 -m wheel tags --remove --python-tag cp3 --abi-tag abi3 --platform-tag linux_x86_64 ${PY_WHEEL}
python3 -m wheel tags --remove --python-tag cp3 --abi-tag abi3 --platform-tag manylinux_2_17_x86_64 ${PY_WHEEL}
done
- name: Upload Artifacts
Expand Down

0 comments on commit e7e4c76

Please sign in to comment.