From 0143e22678ee8f7606ffe026df5a3814fdd70025 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Garc=C3=ADa=20Garz=C3=B3n?= Date: Wed, 4 Dec 2024 15:04:50 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20adjusting=20versions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 6 ++---- setup.py | 5 ++--- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index edeab08..5f81dfc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,10 +14,8 @@ jobs: matrix: python-version: - '3.8' # oldest supported Py3 gha - - '3.9' - - '3.10' # first version using importlib.metadata.entry_points with selection - - '3.11' - - '3.12' + - '3.9' # last version importlib.metadata.entry_points with dictionary interface + - '3.10' # first version using importlib.metadata.entry_points with selection interface - '3' # newest supported Py3 name: Python ${{ matrix.python-version }} steps: diff --git a/setup.py b/setup.py index d26aa70..548e51d 100644 --- a/setup.py +++ b/setup.py @@ -68,12 +68,11 @@ 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - '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', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Text Processing :: Filters',