Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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/sleplet
pyproject-toml: ./pyproject.toml
python-version: "3.13"
python-version: "3.14"
template-directory: ./documentation
4 changes: 2 additions & 2 deletions .github/workflows/examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,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 All @@ -49,7 +49,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
5 changes: 4 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/python/tox@dbbc8dc08f16b08456fd82afdf02c66052564712 # v0
Expand Down Expand Up @@ -55,4 +56,6 @@ jobs:
run-macos-latest-3.12,\
run-ubuntu-latest-3.12,\
run-macos-latest-3.13,\
run-ubuntu-latest-3.13"
run-ubuntu-latest-3.13,\
run-macos-latest-3.14,\
run-ubuntu-latest-3.14"
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
Expand Down Expand Up @@ -207,6 +208,7 @@ env_list = [
"py311",
"py312",
"py313",
"py314",
]
env_run_base = {commands = [
[
Expand All @@ -223,4 +225,6 @@ gh.python = {"3.11" = [
"py312",
], "3.13" = [
"py313",
], "3.14" = [
"py314",
]}
Loading