Skip to content
Merged
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/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
py-ver-major: [ 3 ]
py-ver-minor: [ 9, 10, 11 ]
py-ver-minor: [ 10, 11, 12, 13, 14 ]

env:
py-semver: ${{ format('{0}.{1}', matrix.py-ver-major, matrix.py-ver-minor) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.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@v6
with:
python-version: '3.9'
python-version: '3.14'
cache: pip

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ version: 2
# NOTE: If you modify this file to install a package with pip or apt, please
# verify if we need the same package added to our CI.
build:
os: ubuntu-22.04
os: ubuntu-24.04
tools:
python: "3.9"
nodejs: "16"
python: "3.14"
nodejs: "24"
apt_packages:
- graphviz
- tree
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ repository for reference while revising.
## Building

The user guide uses [Sphinx](https://www.sphinx-doc.org/), a Python documentation
tool. You must have a recent version of Python 3.6+ installed to build the project
tool. You must have a recent version of Python 3.10+ installed to build the project
locally. It is also recommended having `make` (otherwise look at the commands used
in `Makefile`).

Expand Down
15 changes: 8 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,22 @@ classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
]
requires-python = ">=3.6"
requires-python = ">=3.10"
dependencies = [
"cwltool",
"cwlref-runner",
"cwl-utils==0.*",
"myst-parser==3.*",
"myst-parser==4.*",
"pydata-sphinx-theme==0.*",
"sphinx==7.*",
"sphinx==8.*",
"sphinx-reredirects==0.1.*",
"sphinxcontrib-runcmd==0.2.*",
"sphinx-favicon",
Expand Down