From a462ddc60a2f78fe2521fd66e13550ec43c61768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20No=C3=A9?= Date: Mon, 13 Nov 2023 13:28:45 +0100 Subject: [PATCH] Remove Python 3.12 support (will require more work) --- .github/workflows/run-unit-tests.yml | 2 +- CHANGES.txt | 3 +-- setup.py | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index c704bb6..ea0c19e 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8' ] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.8' ] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 diff --git a/CHANGES.txt b/CHANGES.txt index 8a8fe0d..f3c3d45 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,8 +1,7 @@ Current ------- -- Dropped Python 3.5 -- Updated to support Python 3.11 +- Dropped Python 3.5 and 3.6 support. Use Python 3.7 to 3.11 instead. - Added a star record iterator to DwCAReader (thanks to @csbrown) v0.15.1 (2023-01-17) diff --git a/setup.py b/setup.py index 7f5f9a1..0e82943 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: Implementation :: PyPy', ] )