Skip to content

Commit b84b131

Browse files
committed
Upgrade base to Python 3.13
1 parent 9a62372 commit b84b131

File tree

3 files changed

+8
-19
lines changed

3 files changed

+8
-19
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

poetry.lock

Lines changed: 3 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ example-make-python-devex = "example:main"
1515

1616
[tool.poetry.dependencies]
1717
# set Python constraints
18-
python = ">=3.9,<3.13"
18+
python = ">=3.9,<3.14"
1919
## commonly used libraries
2020
# retry failing method calls
2121
retry2 = "^0.9"
@@ -68,11 +68,11 @@ priority = "explicit"
6868
[tool.black]
6969
# 119 = GitHub's wrapping limit
7070
line-length = 119
71-
target-version = ['py39']
71+
target-version = ['py313']
7272
include = '\.pyi?$'
7373

7474
[tool.mypy]
75-
python_version = "3.9"
75+
python_version = "3.13"
7676
warn_return_any = true
7777
warn_unused_configs = true
7878

@@ -109,5 +109,5 @@ source = ["example"]
109109
[tool.ruff]
110110
# Same as Black.
111111
line-length = 119
112-
target-version = "py311"
112+
target-version = "py313"
113113
exclude = [".*", "dist", "__pypackages__", "build", "venv"]

0 commit comments

Comments
 (0)