Skip to content

Commit

Permalink
chore: Update CI configuration to include Python interpreter versions…
Browse files Browse the repository at this point in the history
… 3.8 to 3.13
  • Loading branch information
carlos-rian-qd committed Aug 23, 2024
1 parent 78b971c commit 0b25002
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,25 +211,33 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu, windows]
target: [x86_64]
manylinux: [auto]
interpreter: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [linux, windows, macos]
interpreter: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
include:
- os: ubuntu
platform: linux
# standard runners with override for macos arm
- os: linux
runs-on: ubuntu-latest
- os: windows
ls: dir
runs-on: windows-latest
- os: macos
runs-on: macos-latest-xlarge
exclude:
# macos arm only supported from 3.10 and up
- os: macos
interpreter: '3.8'
- os: macos
interpreter: '3.9'

runs-on: ${{ matrix.os }}-latest
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4

- name: set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.interpreter }}
architecture: ${{ matrix.python-architecture || 'x64' }}
allow-prereleases: true

- name: install rust stable
id: rust-toolchain
Expand Down

0 comments on commit 0b25002

Please sign in to comment.