Drop support for Python 3.7 (#741)

- Minimum required python version to be 3.8.10, a last version which got regular bug fixes.
- tox: drop 3.7 and add 3.12
- Next aqtinstall release will be version 3.2.0

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2024-05-04 16:21:01 +09:00
committed by GitHub
parent a5dea634f4
commit b629c84943
3 changed files with 8 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ classifiers = [
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"bs4", # canonical name is beautifulsoup4
"defusedxml",
@@ -174,7 +174,7 @@ markers = [
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = check, docs, py{37,38,39,310,311}, py39d, mprof, fil, mypy
envlist = check, docs, py{38,39,310,311,312}, py39d, mprof, fil, mypy
isolated_build = True
[testenv]
@@ -248,4 +248,5 @@ python =
3.9: py39, docs, check, mypy
3.10: py310
3.11: py311
3.12: py312
"""