Skip to content

Commit

Permalink
Python 3.12 is now available
Browse files Browse the repository at this point in the history
Disable 3.13-dev for now, as it isn't available yet.
  • Loading branch information
ecederstrand authored Oct 10, 2023
1 parent 22f3201 commit 6a8289a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
needs: pre_job
strategy:
matrix:
python-version: ['3.8', '3.11']
include:
# Allow failure on Python dev - e.g. Cython install regularly fails
- python-version: "3.12-dev"
allowed_failure: true
python-version: ['3.8', '3.12']
#include:
# # Allow failure on Python dev - e.g. Cython install regularly fails
# - python-version: "3.13-dev"
# allowed_failure: true
max-parallel: 1

steps:
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Install cutting-edge Cython-based packages on Python dev versions
continue-on-error: ${{ matrix.allowed_failure || false }}
if: matrix.python-version == '3.12-dev'
if: matrix.python-version == '3.13-dev'
run: |
sudo apt-get install libxml2-dev libxslt1-dev
python -m pip install hg+https://foss.heptapod.net/pypy/cffi
Expand Down

0 comments on commit 6a8289a

Please sign in to comment.