From 7e18d10a685e9cf628ba5d42ace7947cc93c1193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sat, 26 Oct 2024 18:14:57 +0000 Subject: [PATCH] Drop support for Python 3.8 --- .github/workflows/pythonpackage.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 5ac57ee..85c47d3 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.8, 3.9, '3.10', '3.11', '3.12'] + python-version: [3.9, '3.10', '3.11', '3.12', '3.13'] fail-fast: false steps: diff --git a/pyproject.toml b/pyproject.toml index 1eba41d..73c4d75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,17 +12,17 @@ maintainers = [{name = "Breezy Developers", email = "breezy-core@googlegroups.co readme = "README.md" license = {text = "GPLv2 or later"} classifiers = [ - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Operating System :: POSIX", "Operating System :: Microsoft :: Windows", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dynamic = ["version"] dependencies = []