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 39a003e..bcdaef3 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 = []