Skip to content

Commit 8149d4f

Browse files
committed
Update dependencies and add support for Python 3.14
- Added Python 3.14 to the classifiers in pyproject.toml. - Updated dependency versions in the dev, test, and docs groups to allow for greater flexibility. - Modified the tox.ini file to include a new environment for Python 3.14.
1 parent 5a6ebd4 commit 8149d4f

5 files changed

Lines changed: 404 additions & 307 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v6
1414
with:
15-
python-version: 3.12
15+
python-version: 3.13
1616
- name: Install dependencies
1717
run: |
1818
poetry install --only main,docs

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1616
steps:
1717
- uses: actions/checkout@v5
1818
- name: Install poetry

0 commit comments

Comments
 (0)