diff --git a/.github/workflows/create_tests_package_lists.yml b/.github/workflows/create_tests_package_lists.yml index e3296de4f..955b33fd3 100644 --- a/.github/workflows/create_tests_package_lists.yml +++ b/.github/workflows/create_tests_package_lists.yml @@ -11,12 +11,12 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ["3.13", "3.12", "3.11", "3.10", "3.9"] + python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"] include: - os: macos-latest - python-version: "3.13" + python-version: "3.14" - os: windows-latest - python-version: "3.13" + python-version: "3.14" steps: - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e34b2925f..d8e8ab6e8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,12 +23,12 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.13", "3.12", "3.11", "3.10", "3.9"] + python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"] include: - os: windows-latest - python-version: "3.13" + python-version: "3.14" - os: macos-latest - python-version: "3.13" + python-version: "3.14" steps: - uses: actions/checkout@v6 diff --git a/changelog.d/1684.feature.md b/changelog.d/1684.feature.md new file mode 100644 index 000000000..ba20602c0 --- /dev/null +++ b/changelog.d/1684.feature.md @@ -0,0 +1 @@ +Added explicit support for Python 3.14 diff --git a/noxfile.py b/noxfile.py index 27591d9bb..5b92af6cd 100644 --- a/noxfile.py +++ b/noxfile.py @@ -5,7 +5,7 @@ import nox -PYTHON_ALL_VERSIONS = ["3.13", "3.12", "3.11", "3.10", "3.9"] +PYTHON_ALL_VERSIONS = ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"] PYTHON_DEFAULT_VERSION = "3.13" DOC_DEPENDENCIES = [ "jinja2",