Skip to content

Commit df6b91d

Browse files
authored
feat: Python 3.13 support (#34)
1 parent 1f1a9e1 commit df6b91d

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/lint-and-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- name: Set up Python 3.12
14+
- name: Set up Python 3.13
1515
uses: actions/setup-python@v5
1616
with:
17-
python-version: "3.12"
17+
python-version: "3.13"
1818
- name: Install hatch
1919
uses: pypa/hatch@install
2020
- name: Lint documentation
@@ -25,10 +25,10 @@ jobs:
2525
name: Lint code
2626
steps:
2727
- uses: actions/checkout@v4
28-
- name: Set up Python 3.12
28+
- name: Set up Python 3.13
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: "3.12"
31+
python-version: "3.13"
3232
- name: Install hatch
3333
uses: pypa/hatch@install
3434
- name: Lint code
@@ -39,10 +39,10 @@ jobs:
3939
name: Lint type annotations
4040
steps:
4141
- uses: actions/checkout@v4
42-
- name: Set up Python 3.12
42+
- name: Set up Python 3.13
4343
uses: actions/setup-python@v5
4444
with:
45-
python-version: "3.12"
45+
python-version: "3.13"
4646
- name: Install hatch
4747
uses: pypa/hatch@install
4848
- name: Lint typing
@@ -53,7 +53,7 @@ jobs:
5353
name: Run tests
5454
strategy:
5555
matrix:
56-
python-version: ["3.9", "3.10", "3.11", "3.12"]
56+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5757
steps:
5858
- uses: actions/checkout@v4
5959
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
2627
"Topic :: Software Development :: Libraries",
2728
]
2829

0 commit comments

Comments
 (0)