From 5db05ab5a51edb6c380412b586c5ba88861d5e6c Mon Sep 17 00:00:00 2001 From: Andrew Baumann Date: Fri, 1 Dec 2023 13:50:56 +0100 Subject: [PATCH] Test with Python 3.12 --- .github/workflows/python-checks.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-checks.yml b/.github/workflows/python-checks.yml index dac1f62..641569c 100644 --- a/.github/workflows/python-checks.yml +++ b/.github/workflows/python-checks.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["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 a585472..e8a5dad 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,7 @@ def main() -> None: 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], packages=find_packages(include=['pdfannots', 'pdfannots.*']), package_data={'pdfannots': ['py.typed']},