Skip to content

Commit 4eb4862

Browse files
Add python 3.13 compatibility (#106)
1 parent ac92106 commit 4eb4862

File tree

8 files changed

+9
-7
lines changed

8 files changed

+9
-7
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- master
88

99
env:
10-
DEFAULT_PYTHON: '3.12'
10+
DEFAULT_PYTHON: '3.13'
1111

1212
permissions:
1313
contents: read

.github/workflows/dev-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
DEFAULT_PYTHON: '3.12'
12+
DEFAULT_PYTHON: '3.13'
1313

1414
concurrency:
1515
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- '[0-9]+.[0-9]+.[0-9]+'
77

88
env:
9-
DEFAULT_PYTHON: '3.12'
9+
DEFAULT_PYTHON: '3.13'
1010

1111
jobs:
1212
release:

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
cancel-in-progress: true
1414

1515
env:
16-
DEFAULT_PYTHON: '3.12'
16+
DEFAULT_PYTHON: '3.13'
1717

1818
jobs:
1919
tests:
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
python-version: ['3.7', '3.12']
25+
python-version: ['3.7', '3.13']
2626
pydantic-version: ['1', '2']
2727
os: [ubuntu-latest]
2828

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: '3.12'
6+
python: '3.13'
77
jobs:
88
post_checkout:
99
- git fetch --unshallow || true

codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ coverage:
22
status:
33
project:
44
default:
5-
target: 94%
5+
target: 92%
66
threshold: 1%
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add compatibility with ``Python 3.13``

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def parse_requirements(file: Path) -> list[str]:
5959
"Programming Language :: Python :: 3.10",
6060
"Programming Language :: Python :: 3.11",
6161
"Programming Language :: Python :: 3.12",
62+
"Programming Language :: Python :: 3.13",
6263
"Typing :: Typed",
6364
],
6465
project_urls={

0 commit comments

Comments
 (0)