Skip to content

Commit

Permalink
chore!: remove manylinux 2014 build (#2891)
Browse files Browse the repository at this point in the history
Manylinux 2014 is [EOL on June 2024](https://github.com/pypa/manylinux).
  • Loading branch information
eddyxu committed Sep 16, 2024
1 parent c0e966c commit 10c4c67
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ jobs:
matrix:
python-minor-version: [ "9" ]
config:
- platform: x86_64
manylinux: "2_17"
extra_args: ""
- platform: x86_64
manylinux: "2_28"
extra_args: "--features fp16kernels"
Expand All @@ -36,7 +33,7 @@ jobs:
- name: Handle tag
id: handle_tag
run: |
# If the tag ends with -beta.N, we need to call setup_version.py
# If the tag ends with -beta.N, we need to call setup_version.py
# and export repo as "fury" instead of "pypi"
if [[ ${{ github.ref }} == refs/tags/*-beta.* ]]; then
TAG=$(echo ${{ github.ref }} | sed 's/refs\/tags\///')
Expand Down Expand Up @@ -83,7 +80,7 @@ jobs:
- name: Handle tag
id: handle_tag
run: |
# If the tag ends with -beta.N, we need to call setup_version.py
# If the tag ends with -beta.N, we need to call setup_version.py
# and export repo as "fury" instead of "pypi"
if [[ ${{ github.ref }} == refs/tags/*-beta.* ]]; then
TAG=$(echo ${{ github.ref }} | sed 's/refs\/tags\///')
Expand Down Expand Up @@ -122,7 +119,7 @@ jobs:
id: handle_tag
shell: bash
run: |
# If the tag ends with -beta.N, we need to call setup_version.py
# If the tag ends with -beta.N, we need to call setup_version.py
# and export repo as "fury" instead of "pypi"
if [[ ${{ github.ref }} == refs/tags/*-beta.* ]]; then
TAG=$(echo ${{ github.ref }} | sed 's/refs\/tags\///')
Expand Down

0 comments on commit 10c4c67

Please sign in to comment.