From c1981931d425f760725a4c10edea6b92f05691da Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Tue, 6 Aug 2024 13:53:35 +0100 Subject: [PATCH] Drop support for py37 --- .github/workflows/tox.yml | 2 -- mypy.ini | 2 +- pyproject.toml | 3 +-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 365f92c..5cbefb9 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -24,8 +24,6 @@ jobs: include: - tox_env: lint python-version: "3.10" - - tox_env: py37 - python-version: 3.7 - tox_env: py38,py38-devel python-version: 3.8 - tox_env: py39 diff --git a/mypy.ini b/mypy.ini index d7cd351..0352f8b 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,5 +1,5 @@ [mypy] -python_version = 3.7 +python_version = 3.8 color_output = True error_summary = True disallow_untyped_calls = True diff --git a/pyproject.toml b/pyproject.toml index 9ae916a..e0d43cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] # https://peps.python.org/pep-0621/#readme -requires-python = ">=3.7" +requires-python = ">=3.8" dynamic = ["version"] name = "tox-extra" @@ -27,7 +27,6 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",