Skip to content

Commit

Permalink
Can't build for python 3.13 yet, conda-build not yet released for 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjbillington committed Nov 28, 2024
1 parent 0cb8890 commit ce9b242
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,23 @@ jobs:
strategy:
matrix:
include:
- { os: ubuntu-latest, python: '3.13', arch: x64 }
- { os: ubuntu-latest, python: '3.12', arch: x64 }
- { os: ubuntu-latest, python: '3.11', arch: x64 }
- { os: ubuntu-latest, python: '3.10', arch: x64 }
- { os: ubuntu-latest, python: '3.9', arch: x64 }
- { os: ubuntu-latest, python: '3.8', arch: x64 }

- { os: macos-13, python: '3.13', arch: x64 }
- { os: macos-13, python: '3.12', arch: x64 }
- { os: macos-13, python: '3.11', arch: x64 }
- { os: macos-13, python: '3.10', arch: x64 }
- { os: macos-13, python: '3.9', arch: x64 }
- { os: macos-13, python: '3.8', arch: x64 }

- { os: macos-latest, python: '3.13', arch: arm64 }
- { os: macos-latest, python: '3.12', arch: arm64 }
- { os: macos-latest, python: '3.11', arch: arm64 }
- { os: macos-latest, python: '3.10', arch: arm64 }
- { os: macos-latest, python: '3.9', arch: arm64 }

- { os: windows-latest, python: '3.13', arch: x64 }
- { os: windows-latest, python: '3.12', arch: x64 }
- { os: windows-latest, python: '3.11', arch: x64 }
- { os: windows-latest, python: '3.10', arch: x64 }
Expand Down Expand Up @@ -70,12 +66,12 @@ jobs:
- name: Conda package (Unix)
if: runner.os != 'Windows'
shell: bash -l {0}
run: python -m setuptools_conda --pythons=${{ matrix.python }} build .
run: python -m setuptools_conda build --pythons=${{ matrix.python }} .

- name: Conda Package (Windows)
if: runner.os == 'Windows'
shell: cmd /C CALL {0}
run: python -m setuptools_conda --pythons=${{ matrix.python }} build .
run: python -m setuptools_conda build --pythons=${{ matrix.python }} .

- name: Upload Artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit ce9b242

Please sign in to comment.