From abb819542ce62bac95cd85a2017169a4cdc17dd6 Mon Sep 17 00:00:00 2001 From: RobertSamoilescu Date: Thu, 5 Dec 2024 16:49:07 +0000 Subject: [PATCH] Included Python3.12 support (#1033) --- .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 ebd110ac7..1536090e1 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'] + python-version: ['3.9', '3.10', '3.11', '3.12'] 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 c18505422..16f722a82 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' ] + python-version: [ '3.9', '3.10', '3.11', '3.12' ] 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 553c9f8f1..9696256c1 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' ] + python-version: [ '3.9', '3.10', '3.11', '3.12' ] 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 c80ec37b0..9b9c5fa68 100644 --- a/setup.py +++ b/setup.py @@ -72,6 +72,7 @@ def readme(): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: Other/Proprietary License", "Topic :: Scientific/Engineering", ])