Skip to content

Commit cc76acd

Browse files
infra(ci): test with Python 3.13 and add trove classifier (#571)
1 parent bc93aad commit cc76acd

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/ci-workflow.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version:
16+
- "3.8"
17+
- "3.9"
18+
- "3.10"
19+
- "3.11"
20+
- "3.12"
21+
- "3.13"
1622
os: [ubuntu-latest, macos-latest, windows-latest]
1723
include:
1824
- python-version: "pypy-3.9"
@@ -43,7 +49,7 @@ jobs:
4349
run: |
4450
poetry build
4551
twine check dist/*
46-
if: ${{ contains(matrix.python-version, '3.10') }}
52+
if: ${{ contains(matrix.python-version, '3.12') }}
4753
- name: Upload coverage result
4854
if: ${{ env.COVERALLS_REPO_TOKEN != 'windows-latest' }}
4955
env:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ projects on the `discussion forum <http://forum.m-siemens.de/.>`_.
5252
Supported Python Versions
5353
*************************
5454

55-
TinyDB has been tested with Python 3.8 - 3.12 and PyPy3.
55+
TinyDB has been tested with Python 3.8 - 3.13 and PyPy3.
5656

5757
Example Code
5858
************

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
2930
"Programming Language :: Python :: Implementation :: CPython",
3031
"Programming Language :: Python :: Implementation :: PyPy",
3132
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)