Skip to content

Commit

Permalink
update to Python 3.12 release candidate 1
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Aug 10, 2023
1 parent 90b2677 commit fb1aa4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'windows-2022', 'macos-latest']
python: ['3.8', '3.9', '3.10', '3.11', '3.12.0-beta.2', 'pypy3.9']
python: ['3.8', '3.9', '3.10', '3.11', '3.12.0-rc.1', 'pypy3.9']
exclude:
- os: 'macos-latest'
python: 'pypy3.9'
- os: 'windows-2022'
python: '3.12.0-beta.2'
python: '3.12.0-rc.1'

name: "Python ${{ matrix.python }} / ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
Expand All @@ -53,7 +53,7 @@ jobs:
python -m pip install pytest pytest-github-actions-annotate-failures
- name: Install NumPy
if: matrix.python != 'pypy3.9' && matrix.python != '3.12.0-beta.2'
if: matrix.python != 'pypy3.9' && matrix.python != '3.12.0-rc.1'
run: |
python -m pip install numpy scipy
Expand Down

0 comments on commit fb1aa4b

Please sign in to comment.