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/mypy-type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]

steps:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-24.04, windows-latest, macos-latest]

# Force UTF-8 everywhere (Windows is the one that really needs it)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ MacPorts
Installing Stable Release
=========================

Please note that TIAToolbox is currently tested with Python versions 3.11, 3.12, and 3.13. For the full range of supported Python versions, please refer to the package metadata (for example, the ``python_requires`` setting in ``setup.py`` or ``pyproject.toml``)
Please note that TIAToolbox is tested for Python versions 3.11, 3.12, 3.13 and 3.14. For the full range of supported Python versions, please refer to the package metadata (for example, the ``python_requires`` setting in ``setup.py`` or ``pyproject.toml``)

Recommended
-----------
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ dependencies:
- cython
- pip>=20.0.2
- pixman>=0.39.0
- python>=3.11, <=3.13
- python>=3.11, <=3.14
- pip:
- -r requirements.txt
2 changes: 1 addition & 1 deletion requirements/requirements.dev.conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ dependencies:
- cython
- pip>=20.0.2
- pixman>=0.39.0
- python>=3.11, <=3.13
- python>=3.11, <=3.14
- pip:
- -r requirements_dev.txt
4 changes: 2 additions & 2 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ scipy>=1.8
shapely>=2.0.0
SimpleITK>=2.2.1
sphinx>=5.3.0, <9.0.0
tifffile>=2022.10.10, <=2025.5.10
tifffile>=2025.5.21
timm>=1.0.3
torch>=2.5.0
torchvision>=0.15.0
tqdm>=4.64.1
transformers>=4.51.1
umap-learn>=0.5.3
wsidicom>=0.18.0
zarr>=2.13.3, <3.0.0
zarr>=3.0.8
2 changes: 1 addition & 1 deletion requirements/requirements.win64.conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ dependencies:
- openjpeg>=2.4.0
- pip>=20.0.2
- pixman>=0.39.0
- python>=3.11, <=3.13
- python>=3.11, <=3.14
- pip:
- -r requirements.txt
2 changes: 1 addition & 1 deletion requirements/requirements.win64.dev.conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ dependencies:
- openjpeg>=2.4.0
- pip>=20.0.2
- pixman>=0.39.0
- python>=3.11, <=3.13
- python>=3.11, <=3.14
- pip:
- -r requirements_dev.txt
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
setup(
author="TIA Centre",
author_email="TIA@warwick.ac.uk",
python_requires=">=3.11, <3.14",
python_requires=">=3.11, <3.15",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
Expand All @@ -43,6 +43,7 @@
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
description="Computational pathology toolbox developed by TIA Centre.",
dependency_links=dependency_links,
Expand Down
Loading