From dad5428f8a703d5bfcae4897303cc3f48eb4024b Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Tue, 10 Oct 2023 12:44:10 -0400 Subject: [PATCH] ci: Test on Python 3.12 --- .github/workflows/ci.yml | 2 +- CHANGELOG.rst | 6 ++++++ setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae37d44..94bcf24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: [macos-latest, windows-latest, ubuntu-latest] - python-version: [3.7, 3.8, 3.9, '3.10', '3.11', pypy-3.7] + python-version: [3.8, 3.9, '3.10', '3.11', '3.12', pypy-3.9] steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 070bce0..464e73e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +Unreleased +---------- + +* Add Python 3.12 support. +* Drop Python 3.7 support (end-of-life was June 27, 2023). + 0.2.1 - July 13, 2021 --------------------- diff --git a/setup.py b/setup.py index c83a7cd..49a9e28 100644 --- a/setup.py +++ b/setup.py @@ -21,11 +21,11 @@ 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', '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', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Scientific/Engineering :: Information Analysis',