Skip to content

Commit 06f4c19

Browse files
committed
ci(python): bump supported python versions
1 parent b42d75e commit 06f4c19

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 5
1111
matrix:
12-
python-version: [3.8, 3.9, '3.10', '3.11', pypy-3.10-v7.x]
12+
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13', pypy-3.10-v7.x]
1313
include:
1414
- python-version: 3.8
1515
py: py38
@@ -19,6 +19,10 @@ jobs:
1919
py: py310
2020
- python-version: '3.11'
2121
py: py311
22+
- python-version: '3.12'
23+
py: py312
24+
- python-version: '3.13'
25+
py: py313
2226
- python-version: pypy-3.10-v7.x
2327
py: pypy3
2428

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ classifiers = [
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2729
"Programming Language :: Python :: Implementation :: CPython",
2830
"Programming Language :: Python :: Implementation :: PyPy",
2931
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -61,7 +63,7 @@ test = [
6163
]
6264

6365
[[tool.hatch.envs.test.matrix]]
64-
python = ["py38", "py39", "py310", "py311", "pypy3"]
66+
python = ["py38", "py39", "py310", "py311", "py312", "py313", "pypy3"]
6567
type = ["default"]
6668

6769
[tool.hatch.envs.style]
@@ -88,7 +90,7 @@ format = [
8890

8991
[tool.black]
9092
line-length = 100
91-
target-version = ["py311"]
93+
target-version = ["py313"]
9294
skip-string-normalization = true
9395

9496
[tool.isort]

0 commit comments

Comments
 (0)