From cc1e20ad401c9f06a8fd3d382cf1ecf55eae32dd Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Wed, 8 Oct 2025 10:18:46 +0200 Subject: [PATCH] Run CI with Python 3.14.0 final --- .github/workflows/test.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 47f725170bd8..de3f8877ee67 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,19 +59,25 @@ jobs: toxenv: py tox_extra_args: "-n 4" test_mypyc: true - - name: Test suite with py313-windows-64 - python: '3.13' - os: windows-latest - toxenv: py - tox_extra_args: "-n 4" - - - name: Test suite with py314-dev-ubuntu - python: '3.14-dev' + - name: Test suite with py314-ubuntu, mypyc-compiled + python: '3.14' os: ubuntu-24.04-arm toxenv: py tox_extra_args: "-n 4" - # allow_failure: true test_mypyc: true + - name: Test suite with py314-windows-64 + python: '3.14' + os: windows-latest + toxenv: py + tox_extra_args: "-n 4" + + # - name: Test suite with py315-dev-ubuntu + # python: '3.15-dev' + # os: ubuntu-24.04-arm + # toxenv: py + # tox_extra_args: "-n 4" + # # allow_failure: true + # test_mypyc: true - name: mypyc runtime tests with py39-macos python: '3.9.21'