Skip to content

Commit

Permalink
core: drop EOL python 3.8 and add new 3.13 to CI (#2266)
Browse files Browse the repository at this point in the history
  • Loading branch information
ultrabug authored Oct 22, 2024
1 parent 51e7d8f commit 687c88d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]" },
]
Expand All @@ -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",
]
Expand Down Expand Up @@ -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]
Expand All @@ -96,7 +96,7 @@ format = [

[tool.black]
line-length = 100
target-version = ["py311"]
target-version = ["py312"]
skip-string-normalization = true

[tool.isort]
Expand Down

0 comments on commit 687c88d

Please sign in to comment.