chore: drop python3.8 support and add 3.13

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2024-09-29 10:33:33 +09:00
parent 73fc45e12a
commit 1307eb14ba
2 changed files with 5 additions and 6 deletions

View File

@@ -53,7 +53,7 @@ Requirements
------------ ------------
- Minimum Python version: - Minimum Python version:
3.8 3.9
- Recommended Python version: - Recommended Python version:
3.9, 3.12 (frequently tested on) 3.9, 3.12 (frequently tested on)
@@ -78,9 +78,8 @@ There is precise documentation with many examples.
You are recommended to read the *Getting started* section. You are recommended to read the *Getting started* section.
- Getting started: https://aqtinstall.readthedocs.io/en/latest/getting_started.html - Getting started: https://aqtinstall.readthedocs.io/en/latest/getting_started.html
- Stable (v3.1.x): https://aqtinstall.readthedocs.io/en/stable - Stable: https://aqtinstall.readthedocs.io/en/stable
- Latest: https://aqtinstall.readthedocs.io/en/latest - Latest: https://aqtinstall.readthedocs.io/en/latest
- Old (v2.2.3) : https://aqtinstall.readthedocs.io/en/v2.2.3/
Install Install
------- -------

View File

@@ -20,13 +20,13 @@ classifiers = [
"Topic :: Software Development", "Topic :: Software Development",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
] ]
requires-python = ">=3.8" requires-python = ">=3.9"
dependencies = [ dependencies = [
"bs4", # canonical name is beautifulsoup4 "bs4", # canonical name is beautifulsoup4
"defusedxml", "defusedxml",
"humanize", "humanize",
"patch>=1.16", "patch>=1.16",
"py7zr>=0.20.6", "py7zr>=1.0.0-rc1",
"requests>=2.31.0", "requests>=2.31.0",
"semantic-version", "semantic-version",
"texttable", "texttable",
@@ -56,7 +56,7 @@ test = [
"pympler", "pympler",
] ]
check = [ check = [
"mypy>=0.990", "mypy>=1.10.0",
"flake8>=6.0.0,<8.0.0", "flake8>=6.0.0,<8.0.0",
"flake8-black", "flake8-black",
"flake8-colors", "flake8-colors",