Skip to content

Commit 10a6f1f

Browse files
authored
Merge pull request #57 from modern-python/bump-python
support python 3.14
2 parents 8cea87c + 31325cf commit 10a6f1f

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- "3.11"
3434
- "3.12"
3535
- "3.13"
36+
- "3.14"
3637
steps:
3738
- uses: actions/checkout@v4
3839
- uses: extractions/setup-just@v2

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ default: install lint test
22

33
install:
44
uv lock --upgrade
5-
uv sync --all-extras --frozen
5+
uv sync --all-extras --frozen --group lint
66

77
lint:
88
uv run ruff format

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
2626
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
2728
"Typing :: Typed",
2829
"Topic :: Software Development :: Libraries",
2930
]
@@ -116,6 +117,8 @@ dev = [
116117
"pytest-asyncio",
117118
"httpx", # for test client
118119
"redis>=5.2.1",
120+
]
121+
lint = [
119122
"mypy",
120123
"ruff",
121124
]

0 commit comments

Comments
 (0)