From fb4149423aaa491238673f63370cd817b1785fcc Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Tue, 14 May 2024 14:20:39 -0700 Subject: [PATCH] Drop python3.7 because it's EOL It's also no longer in the latest fully supported Ubuntu LTS --- .drone.star | 1 - pyproject.toml | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.drone.star b/.drone.star index 4c5cf0b..4bf1c55 100644 --- a/.drone.star +++ b/.drone.star @@ -1,7 +1,6 @@ # Build pipelines PYTHON_VERSIONS = [ - "3.7", "3.8", "3.9", "3.10", diff --git a/pyproject.toml b/pyproject.toml index 96b99a5..7682352 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ authors = [ maintainers = [ { name = "Ian Fijolek", email = "iamthefij@gmail.com" } ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = ["requests"] [project.optional-dependencies] @@ -53,7 +53,7 @@ run = [ ] [[tool.hatch.envs.test.matrix]] -python = ["3", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] +python = ["3", "3.8", "3.9", "3.10", "3.11", "3.12"] [tool.hatch.envs.lint] detached = true