From 490be26bd422daf1e43ed98e974b56ac9bd878c3 Mon Sep 17 00:00:00 2001 From: Shan E Ahmed Raza <13048456+shaneahmed@users.noreply.github.com> Date: Sat, 16 Dec 2023 11:15:17 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20Release=201.5.1=20(#764)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 1.5.1 (2023-12-16) ### Development related changes - Specifies compatible Python versions - Fixes `tiatoolbox-feedstock` build for conda-forge release #763 **Full Changelog:** https://github.com/TissueImageAnalytics/tiatoolbox/compare/v1.5.0...v1.5.1 --- .github/workflows/docker-publish.yml | 2 +- CITATION.cff | 2 +- HISTORY.md | 9 +++++++++ pyproject.toml | 2 +- setup.py | 4 ++-- tiatoolbox/__init__.py | 2 +- 6 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 1d29fa28b..4f63c729e 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -6,7 +6,7 @@ env: REGISTRY: ghcr.io IMAGE_NAME: TissueImageAnalytics/tiatoolbox image: ghcr.io/tissueimageanalytics/tiatoolbox - TOOLBOX_VER: 1.5.0 + TOOLBOX_VER: 1.5.1 jobs: build-and-push-image: diff --git a/CITATION.cff b/CITATION.cff index f04d2f4a3..1a3f86244 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -44,7 +44,7 @@ authors: given-names: "Shan E Ahmed" orcid: "https://orcid.org/0000-0002-1097-1738" title: "TIAToolbox as an end-to-end library for advanced tissue image analytics" -version: 1.5.0 # TIAToolbox version +version: 1.5.1 # TIAToolbox version doi: 10.5281/zenodo.5802442 date-released: 2022-10-20 url: "https://github.com/TissueImageAnalytics/tiatoolbox" diff --git a/HISTORY.md b/HISTORY.md index 8a865f82b..bfde54e95 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,14 @@ # History +## 1.5.1 (2023-12-16) + +### Development related changes + +- Specifies compatible Python versions + - Fixes `tiatoolbox-feedstock` build for conda-forge release #763 + +**Full Changelog:** https://github.com/TissueImageAnalytics/tiatoolbox/compare/v1.5.0...v1.5.1 + ## 1.5.0 (2023-12-15) ### Major Updates and Feature Improvements diff --git a/pyproject.toml b/pyproject.toml index 40cd0c2c9..dbf71f456 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ [tool.poetry] name = "TIA Centre" -version = "1.5.0" +version = "1.5.1" description = "test" authors = ["TIA Centre "] diff --git a/setup.py b/setup.py index 784075514..92fe58e0b 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( author="TIA Centre", author_email="tia@dcs.warwick.ac.uk", - python_requires=">=3.8", + python_requires=">=3.8, <3.12", classifiers=[ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", @@ -63,6 +63,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/TissueImageAnalytics/tiatoolbox", - version="1.5.0", + version="1.5.1", zip_safe=False, ) diff --git a/tiatoolbox/__init__.py b/tiatoolbox/__init__.py index 9c009a1ac..6ceb7ffe0 100644 --- a/tiatoolbox/__init__.py +++ b/tiatoolbox/__init__.py @@ -20,7 +20,7 @@ __author__ = """TIA Centre""" __email__ = "tialab@dcs.warwick.ac.uk" -__version__ = "1.5.0" +__version__ = "1.5.1" # This will set the tiatoolbox external data # default to be the user home folder, should work on both Window and Unix/Linux