From 7f939454ac0c48e597b425d86b4b64cb017ea16c Mon Sep 17 00:00:00 2001 From: Delgan Date: Sat, 19 Oct 2024 15:07:05 +0200 Subject: [PATCH] Add informative CI tests against Python 3.14-dev Unfortunately, it'll fail for a while until a new version of "flit-core" is published (hopefully soon: https://github.com/pypa/flit/pull/695 ?). --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3e9b15d0..2464e1e9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,6 @@ on: jobs: tests: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository - continue-on-error: ${{ endsWith(matrix.python-version, '-dev') }} strategy: fail-fast: false matrix: @@ -23,6 +22,7 @@ jobs: - '3.11' - '3.12' - '3.13' + - 3.14-dev - pypy-3.10 include: - os: ubuntu-20.04 @@ -34,6 +34,7 @@ jobs: - os: macos-13 python-version: '3.12' runs-on: ${{ matrix.os }} + continue-on-error: ${{ endsWith(matrix.python-version, '-dev') }} steps: - name: Checkout repository uses: actions/checkout@v4