From 687c88d5fffe3e7097d32b5e81b391f39c82c2aa Mon Sep 17 00:00:00 2001 From: Ultrabug Date: Tue, 22 Oct 2024 12:21:52 +0200 Subject: [PATCH] core: drop EOL python 3.8 and add new 3.13 to CI (#2266) --- .github/workflows/ci.yml | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2dde286b7f..198bde8d5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] + python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v1 diff --git a/pyproject.toml b/pyproject.toml index e4a815713e..d8764c51bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ dynamic = ["version"] description = "py3status: an extensible i3status wrapper written in python" readme = "README.md" license = "BSD-2-Clause" -requires-python = ">=3.8" +requires-python = ">=3.9" authors = [ { name = "Ultrabug", email = "ultrabug@ultrabug.net" }, ] @@ -20,11 +20,11 @@ classifiers = [ "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3", - "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", "Topic :: Software Development :: Libraries :: Python Modules", ] @@ -72,7 +72,7 @@ test = [ ] [[tool.hatch.envs.test.matrix]] -python = ["py38", "py39", "py310", "py311", "py312"] +python = ["py39", "py310", "py311", "py312", "py313"] type = ["default"] [tool.hatch.envs.style] @@ -96,7 +96,7 @@ format = [ [tool.black] line-length = 100 -target-version = ["py311"] +target-version = ["py312"] skip-string-normalization = true [tool.isort]