diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 6d808c2..b331b71 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -12,9 +12,9 @@ jobs: MACOSX_DEPLOYMENT_TARGET: "10.15" strategy: matrix: - os: [ubuntu-22.04, macos-13, windows-latest] + os: [ubuntu-22.04, macos-13, windows-latest, ubuntu-22.04-arm] cibw_archs: ["auto64"] - cibw_build: ["cp38", "cp39", "cp310", "cp311", "cp312", "cp313"] + cibw_build: ["cp39", "cp310", "cp311", "cp312", "cp313"] steps: - uses: actions/checkout@v3 @@ -26,7 +26,7 @@ jobs: - uses: actions/setup-python@v4 name: Install Python with: - python-version: '3.10' + python-version: '3.11' - name: Install cibuildwheel run: | @@ -64,7 +64,7 @@ jobs: path: dist/*.whl retention-days: 1 - build_wheels_apple_silicon: + build_wheels_apple_arm64: name: Build wheels on ${{ matrix.os }} runs-on: ${{ matrix.os }} env: diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index f707359..5632872 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -14,9 +14,9 @@ jobs: MACOSX_DEPLOYMENT_TARGET: "10.15" strategy: matrix: - os: [ubuntu-22.04, macos-13, windows-latest] + os: [ubuntu-22.04, macos-13, windows-latest, ubuntu-22.04-arm] cibw_archs: ["auto64"] - cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"] + cibw_build: ["cp39", "cp310", "cp311", "cp312", "cp313"] steps: - uses: actions/checkout@v3 @@ -29,7 +29,7 @@ jobs: - uses: actions/setup-python@v4 name: Install Python with: - python-version: '3.10' + python-version: '3.11' - name: Install cibuildwheel run: | @@ -70,7 +70,7 @@ jobs: TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} TWINE_REPOSITORY: pypi - build_wheels_apple_silicon: + build_wheels_apple_arm64: name: Build wheels on ${{ matrix.os }} runs-on: ${{ matrix.os }} env: