Drop support for Python 3.7

Python 3.7 is EOL, no longer supported.
This commit is contained in:
Sybren A. Stüvel 2023-11-02 15:05:31 +01:00
parent 36c258985e
commit e2b2e6fb68
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ s3 = ["boto3"]
zstandard = ["zstandard"] zstandard = ["zstandard"]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.7" python = "^3.8"
requests = "^2.11" requests = "^2.11"
# For S3 storage support: # For S3 storage support:

View File

@ -6,7 +6,7 @@ max-line-length = 100
[mypy] [mypy]
# This should match pyproject.toml # This should match pyproject.toml
python_version = 3.7 python_version = 3.8
warn_redundant_casts = True warn_redundant_casts = True
ignore_missing_imports = True ignore_missing_imports = True

View File

@ -1,6 +1,6 @@
[tox] [tox]
isolated_build = true isolated_build = true
envlist = py37, py38, py39, py310, py311 envlist = py38, py39, py310, py311
[testenv] [testenv]
whitelist_externals = poetry whitelist_externals = poetry