Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: "3.13"
python-version: "3.14"
cache: pip
cache-dependency-path: pyproject.toml

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
project-directory: ./src/example_package
pyproject-toml: ./pyproject.toml
python-version: "3.13"
python-version: "3.14"
template-directory: ./documentation
5 changes: 3 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
include:
- os: macos-latest
python-version: "3.13"
python-version: "3.14"
- os: windows-latest
python-version: "3.13"
python-version: "3.14"
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/python/tox@7193f2d6fda65de74a0d750fd19f53314f899200 # v0
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
dependencies = []
Expand Down Expand Up @@ -144,6 +145,7 @@ env_list = [
"py311",
"py312",
"py313",
"py314",
]
env_run_base = {commands = [
[
Expand All @@ -160,4 +162,6 @@ gh.python = {"3.11" = [
"py312",
], "3.13" = [
"py313",
], "3.14" = [
"py314",
]}
Loading