From 40ce4c21df53dd6c4c9c150d0871df06ad619b1e Mon Sep 17 00:00:00 2001 From: "Caleb P. Burns" <2126043+cpburnz@users.noreply.github.com> Date: Thu, 7 Sep 2023 09:15:44 -0400 Subject: [PATCH] Drop support for Python 3.7 Remove support for EoL Python 3.7. Closes #592. --- .github/workflows/ci.yaml | 1 - pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8c1b616..3a5ebaf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -38,7 +38,6 @@ jobs: fail-fast: false matrix: python-version: - - '3.7' - '3.8' - '3.9' - '3.10' diff --git a/pyproject.toml b/pyproject.toml index 3d8f7d0..63746f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "yamllint" description = "A linter for YAML files." readme = {file = "README.rst", content-type = "text/x-rst"} -requires-python = ">=3.7" +requires-python = ">=3.8" license = {text = "GPL-3.0-or-later"} authors = [{name = "Adrien Vergé"}] keywords = ["yaml", "lint", "linter", "syntax", "checker"]