From 752fe7c74f189117e82f27587ee8f8d4c470718d Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 6 Dec 2024 12:15:40 +0000 Subject: [PATCH] Included support for Python 3.13 --- .github/workflows/ci.yml | 2 +- .github/workflows/test_all_notebooks.yml | 2 +- .github/workflows/test_changed_notebooks.yml | 2 +- setup.py | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d30024e7c..e0d56b448 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest ] - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] include: # Run windows tests on only one python version - os: windows-latest python-version: '3.11' diff --git a/.github/workflows/test_all_notebooks.yml b/.github/workflows/test_all_notebooks.yml index 16f722a82..80fb3012b 100644 --- a/.github/workflows/test_all_notebooks.yml +++ b/.github/workflows/test_all_notebooks.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false # Continue to run other builds despite a failure matrix: os: [ubuntu-latest] - python-version: [ '3.9', '3.10', '3.11', '3.12' ] + python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ] include: # Run windows tests on only one python version - os: windows-latest python-version: '3.11' diff --git a/.github/workflows/test_changed_notebooks.yml b/.github/workflows/test_changed_notebooks.yml index 9696256c1..f99d9f7cc 100644 --- a/.github/workflows/test_changed_notebooks.yml +++ b/.github/workflows/test_changed_notebooks.yml @@ -27,7 +27,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [ '3.9', '3.10', '3.11', '3.12' ] + python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ] include: # Run windows tests on only one python version - os: windows-latest python-version: '3.11' diff --git a/setup.py b/setup.py index 9b9c5fa68..315cfd423 100644 --- a/setup.py +++ b/setup.py @@ -73,6 +73,7 @@ def readme(): "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "License :: Other/Proprietary License", "Topic :: Scientific/Engineering", ])