From e2b2e6fb68dcaa0de6e9b634ac5b14baac0d3c4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 2 Nov 2023 15:05:31 +0100 Subject: [PATCH] Drop support for Python 3.7 Python 3.7 is EOL, no longer supported. --- pyproject.toml | 2 +- setup.cfg | 2 +- tox.ini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bb902a1..da4ee42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ s3 = ["boto3"] zstandard = ["zstandard"] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" requests = "^2.11" # For S3 storage support: diff --git a/setup.cfg b/setup.cfg index 4c31b34..5c42b36 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ max-line-length = 100 [mypy] # This should match pyproject.toml -python_version = 3.7 +python_version = 3.8 warn_redundant_casts = True ignore_missing_imports = True diff --git a/tox.ini b/tox.ini index c2bdab2..0db2658 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] isolated_build = true -envlist = py37, py38, py39, py310, py311 +envlist = py38, py39, py310, py311 [testenv] whitelist_externals = poetry