From 025443d34605ec9ecc521039a5ae8745fed5bdc5 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sun, 14 Sep 2025 11:03:39 +0300 Subject: [PATCH 1/2] Test Python 3.14 on GitHub Actions --- .github/workflows/ci.yml | 2 ++ tox.ini | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d0f1694c..055bcfc95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ on: jobs: test: strategy: + fail-fast: false matrix: python-version: [ "2.7", @@ -23,6 +24,7 @@ jobs: "3.11", "3.12", "3.13", + "3.14", "pypy-2.7", "pypy-3.8", ] diff --git a/tox.ini b/tox.ini index a1e346762..d38ffb1f6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py27,py33,py34,py35,py36,py37,py38,pypy,flake8 +envlist=py{27,33,34,35,36,37,38,39,310,311,312,313,314,py},flake8 [testenv] deps= pytest From a4bb26dcb28f6067564df581f86ae6310225fca2 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 14 Sep 2025 08:48:54 -0700 Subject: [PATCH 2/2] Update ci.yml fail-fast should be a separate change --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 055bcfc95..7303bbc0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,6 @@ on: jobs: test: strategy: - fail-fast: false matrix: python-version: [ "2.7",