Skip to content

Commit

Permalink
Update: PyPI のストレージ容量削減のため、需要の少ない Windows x86 / arm64 、macOS universa…
Browse files Browse the repository at this point in the history
…l2 と Python 3.8 のビルド済み wheel を廃止

今の所 Python 3.8 でも動くように実装されているが、EOL を過ぎているし主要ライブラリでも Python 3.8 サポート終了が目立つので、今後次第ではサポート自体廃止するかも
  • Loading branch information
tsukumijima committed Jan 2, 2025
1 parent 4302d03 commit f078506
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- os: ubuntu-latest
archs: [x86_64, aarch64]
- os: windows-latest
archs: [AMD64, x86, ARM64]
archs: [AMD64]
- os: macos-latest
archs: [x86_64, arm64, universal2]
archs: [x86_64, arm64]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
CIBW_ARCHS_MACOS: ${{ (contains(matrix.os, 'macos') && join(matrix.archs, ' ')) || 'x86_64' }}
CIBW_TEST_SKIP: "*-win_arm64"
CIBW_SKIP: pp* *-musllinux*
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8"
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9"

- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit f078506

Please sign in to comment.