Skip to content

Commit 687c88d

Browse files
authored
core: drop EOL python 3.8 and add new 3.13 to CI (#2266)
1 parent 51e7d8f commit 687c88d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 5
1010
matrix:
11-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
11+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
1414
- uses: actions/checkout@v1

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "py3status: an extensible i3status wrapper written in python"
99
readme = "README.md"
1010
license = "BSD-2-Clause"
11-
requires-python = ">=3.8"
11+
requires-python = ">=3.9"
1212
authors = [
1313
{ name = "Ultrabug", email = "ultrabug@ultrabug.net" },
1414
]
@@ -20,11 +20,11 @@ classifiers = [
2020
"Operating System :: POSIX :: Linux",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2828
"Programming Language :: Python :: Implementation :: CPython",
2929
"Topic :: Software Development :: Libraries :: Python Modules",
3030
]
@@ -72,7 +72,7 @@ test = [
7272
]
7373

7474
[[tool.hatch.envs.test.matrix]]
75-
python = ["py38", "py39", "py310", "py311", "py312"]
75+
python = ["py39", "py310", "py311", "py312", "py313"]
7676
type = ["default"]
7777

7878
[tool.hatch.envs.style]
@@ -96,7 +96,7 @@ format = [
9696

9797
[tool.black]
9898
line-length = 100
99-
target-version = ["py311"]
99+
target-version = ["py312"]
100100
skip-string-normalization = true
101101

102102
[tool.isort]

0 commit comments

Comments
 (0)