From 5c441203172124a4c290064c215925f304bdc589 Mon Sep 17 00:00:00 2001 From: Yanick Fratantonio Date: Thu, 21 Nov 2024 09:45:39 +0000 Subject: [PATCH 1/2] python: indicate support for python 3.13 --- python/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/python/pyproject.toml b/python/pyproject.toml index 394ba185..016b8c53 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", From 2c33bcbed3f5fb23c17cf2941aba9d1debdaf6c5 Mon Sep 17 00:00:00 2001 From: Yanick Fratantonio Date: Thu, 21 Nov 2024 09:45:50 +0000 Subject: [PATCH 2/2] python: extend testing to python 3.13 --- .github/workflows/python-test-published-package.yml | 2 +- .github/workflows/python-test-suite.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-test-published-package.yml b/.github/workflows/python-test-published-package.yml index 0d329deb..791dce90 100644 --- a/.github/workflows/python-test-published-package.yml +++ b/.github/workflows/python-test-published-package.yml @@ -17,7 +17,7 @@ jobs: unit-testing: strategy: matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ] os: [ "ubuntu-latest", "macos-latest", "windows-latest" ] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/python-test-suite.yml b/.github/workflows/python-test-suite.yml index 9c2d5900..b505a556 100644 --- a/.github/workflows/python-test-suite.yml +++ b/.github/workflows/python-test-suite.yml @@ -22,7 +22,7 @@ jobs: unit-testing: strategy: matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ] os: [ "ubuntu-latest", "macos-latest" ] runs-on: ${{ matrix.os }} steps: