From 29f4b238b0bcb276877c66f02f5e05aa5b3649f6 Mon Sep 17 00:00:00 2001 From: grossmj Date: Mon, 9 Oct 2023 16:54:47 +1000 Subject: [PATCH] Add Python 3.12 support. Fixes https://github.com/GNS3/gns3-server/issues/2273 --- .github/workflows/testing.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 10347cd3..f7398a5a 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-20.04 # Downgrade Ubuntu to 20.04 to fix missing Python 3.6 strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 50f1f276..5ee8f8be 100644 --- a/setup.py +++ b/setup.py @@ -109,6 +109,7 @@ setup( "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", ], )