Skip to content

Commit

Permalink
Add support for Python 3.14 (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Nov 2, 2024
1 parent 87e7f73 commit 1a161c3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["pypy3.10", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["pypy3.10", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
os: [macos-latest, ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Release Checklist
# Release checklist

- [ ] Get `main` to the appropriate code release state.
[GitHub Actions](https://github.com/hugovk/tinytext/actions) should be running
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Artistic Software",
Expand Down Expand Up @@ -91,6 +92,9 @@ lint.flake8-import-conventions.banned-from = [ "datetime" ]
lint.isort.known-first-party = [ "tinytext" ]
lint.isort.required-imports = [ "from __future__ import annotations" ]

[tool.pyproject-fmt]
max_supported_python = "3.14"

[tool.pytest.ini_options]
filterwarnings = [
# Python <= 3.11
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env_list =
cli
lint
mypy
py{py3, 313, 312, 311, 310, 39}
py{py3, 314, 313, 312, 311, 310, 39}

[testenv]
deps =
Expand Down

0 comments on commit 1a161c3

Please sign in to comment.