From 6c5ed3494c69a1fa095966b63388a06d64e4429c Mon Sep 17 00:00:00 2001 From: Konrad Weihmann Date: Sat, 2 Dec 2023 07:04:06 +0000 Subject: [PATCH] repo: add python 3.12 support Signed-off-by: Konrad Weihmann --- .github/workflows/pythonpackage.yml | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 3b101f4..fc0b08c 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index 3c22092..4f52be6 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,8 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3', ], - python_requires='>=3.7', + python_requires='>=3.8', )