Skip to content

Commit 62aa23e

Browse files
authored
Merge pull request #230 from Doist/thomas/add-python-3.14
Add support for Python 3.14
2 parents f6972b7 + 1bcd63a commit 62aa23e

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
env: ["py310", "py311", "py312", "py313"]
9+
env: ["py310", "py311", "py312", "py313", "py314"]
1010
runs-on: ubuntu-latest
1111
timeout-minutes: 60
1212
steps:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111

1212
- `TodoistAPIAsync` now performs true async HTTP I/O with `httpx.AsyncClient`.
13+
- Support for Python 3.14.
1314

1415
### Removed
1516

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ classifiers = [
1414

1515
dependencies = [
1616
"httpx>=0.28.1,<1",
17-
"dataclass-wizard>=0.35.0,<1.0",
17+
"dataclass-wizard>=0.35.4,<1.0",
1818
"annotated-types",
1919
]
2020

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py310,py311,py312,py313
2+
envlist = py310,py311,py312,py313,py314
33

44
[testenv]
55
runner = uv-venv-lock-runner

uv.lock

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

0 commit comments

Comments
 (0)