From be6c01369719d3c6225f11568424ea9193321334 Mon Sep 17 00:00:00 2001 From: Damian Shaw Date: Thu, 2 Jan 2025 07:16:57 -0500 Subject: [PATCH 1/2] Run Python 3.14 tests --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40e7adb32dc..ab5044c90cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -120,6 +120,7 @@ jobs: - "3.11" - "3.12" - "3.13" + - "3.14" steps: - uses: actions/checkout@v4 @@ -180,6 +181,7 @@ jobs: # - "3.11" # - "3.12" - "3.13" + - "3.14" group: - { number: 1, pytest-filter: "not test_install" } - { number: 2, pytest-filter: "test_install" } From a837a380e6a19b6a19df6e1449a7f4e9e2bfebbe Mon Sep 17 00:00:00 2001 From: Damian Shaw Date: Thu, 2 Jan 2025 07:25:12 -0500 Subject: [PATCH 2/2] Add 3.14 to nox file --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 6e6e144bccb..bb380e1518d 100644 --- a/noxfile.py +++ b/noxfile.py @@ -70,7 +70,7 @@ def should_update_common_wheels() -> bool: # ----------------------------------------------------------------------------- # Development Commands # ----------------------------------------------------------------------------- -@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3"]) +@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy3"]) def test(session: nox.Session) -> None: # Get the common wheels. if should_update_common_wheels():