From 834faf695f1dd2152a26c4c4158e4f795d10a02a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sun, 5 May 2024 16:35:37 +0100 Subject: [PATCH] Drop python 3.7 support --- .github/workflows/pythonpackage.yml | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index c31c084..1a7ff68 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] + python-version: [3.8, 3.9, '3.10', '3.11', '3.12'] fail-fast: false steps: diff --git a/pyproject.toml b/pyproject.toml index b0e29e4..9e70b8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,6 @@ maintainers = [{name = "Breezy Developers", email = "breezy-core@googlegroups.co readme = "README.md" license = {text = "GPLv2 or later"} classifiers = [ - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -23,7 +22,7 @@ classifiers = [ "Operating System :: POSIX", "Operating System :: Microsoft :: Windows", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dynamic = ["version"] dependencies = []