From 9226cb6e4fbdd01ea08b5df6b2f3102532607117 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sat, 13 Jul 2024 01:29:13 -0400 Subject: [PATCH] build: Drop Python 3.7 support, closes #508 --- .github/workflows/tests.yml | 2 +- docs/news.rst | 1 + setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ecc0d6ca..e23d7775 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/docs/news.rst b/docs/news.rst index f4bd1625..5a6424d4 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -18,6 +18,7 @@ Changed ~~~~~~~ - Add a confirmation dialog to the Cancel button. +- Drop support for end-of-life Python version 3.7. Fixed ~~~~~ diff --git a/setup.py b/setup.py index fcf07420..b58bcaa2 100644 --- a/setup.py +++ b/setup.py @@ -47,11 +47,11 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - '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', 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Environment :: No Input/Output (Daemon)',