Skip to content

Commit

Permalink
infra(ci): test with Python 3.13 and add trove classifier (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Oct 7, 2024
1 parent bc93aad commit cc76acd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- python-version: "pypy-3.9"
Expand Down Expand Up @@ -43,7 +49,7 @@ jobs:
run: |
poetry build
twine check dist/*
if: ${{ contains(matrix.python-version, '3.10') }}
if: ${{ contains(matrix.python-version, '3.12') }}
- name: Upload coverage result
if: ${{ env.COVERALLS_REPO_TOKEN != 'windows-latest' }}
env:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ projects on the `discussion forum <http://forum.m-siemens.de/.>`_.
Supported Python Versions
*************************

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

Example Code
************
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
Expand Down

0 comments on commit cc76acd

Please sign in to comment.