Skip to content

Commit

Permalink
Add support for Python 3.14 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Nov 20, 2024
2 parents 108afb9 + b391523 commit 58da95d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .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.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
os: [Windows, macOS, Ubuntu]

steps:
Expand All @@ -38,7 +38,7 @@ jobs:
uvx --with tox-uv tox -e cli
- name: Cog
if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
if: matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest'
run: |
uvx --with tox-uv tox -e cog
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,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",
]
Expand Down Expand Up @@ -92,7 +93,7 @@ lint.isort.known-first-party = [ "pepotron" ]
lint.isort.required-imports = [ "from __future__ import annotations" ]

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

[tool.pytest.ini_options]
addopts = "--color=yes"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env_list =
cog
lint
mypy
py{py3, 313, 312, 311, 310, 39}
py{py3, 314, 313, 312, 311, 310, 39}

[testenv]
extras =
Expand Down

0 comments on commit 58da95d

Please sign in to comment.