Skip to content

Commit c7b4cd8

Browse files
author
Charly Laurent
committed
chore: support for Python 3.13
Change-Id: Ib4d1f459aa3565694153877a3f6c703f0bb36828
1 parent d9afa7f commit c7b4cd8

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818
steps:
1919
- uses: actions/[email protected]
2020
- uses: actions/[email protected]

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/[email protected]
1515
- uses: actions/[email protected]
1616
with:
17-
python-version: ">=3.12"
17+
python-version: ">=3.13"
1818
- run: |
1919
pip install -r requirements-poetry.txt
2020
git tag $(poetry version --short)

.mergify.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ queue_rules:
99
- check-success=Test with Python 3.10
1010
- check-success=Test with Python 3.11
1111
- check-success=Test with Python 3.12
12+
- check-success=Test with Python 3.13
1213
- "#approved-reviews-by>=1"
1314
- "#changes-requested-reviews-by=0"
1415
- "#review-threads-unresolved=0"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.10",
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
2324
"Programming Language :: Python :: Implementation :: CPython",
2425
"Programming Language :: Python :: Implementation :: PyPy",
2526
"Topic :: Database",
@@ -58,7 +59,7 @@ filterwarnings = ["error"]
5859
[tool.ruff]
5960
line-length = 88
6061
indent-width = 4
61-
target-version = "py312"
62+
target-version = "py313"
6263

6364
[tool.ruff.lint]
6465
preview = true

0 commit comments

Comments
 (0)