Skip to content

Commit d548b33

Browse files
authored
🔖 REL: Release 1.3.3 (#552)
## 1.3.3 (2023-03-02) ### Major Updates and Feature Improvements - Restricts dependency versions for long term stability of the current version ### Changes to API None ### Bug Fixes and Other Changes - Fix bug related to reading scikit-image ### Development related changes - Restricts dependency versions for compatibility
1 parent 24390e5 commit d548b33

File tree

7 files changed

+51
-32
lines changed

7 files changed

+51
-32
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
REGISTRY: ghcr.io
77
IMAGE_NAME: TissueImageAnalytics/tiatoolbox
88
image: ghcr.io/tissueimageanalytics/tiatoolbox
9-
TOOLBOX_VER: 1.3.2
9+
TOOLBOX_VER: 1.3.3
1010

1111
jobs:
1212
build-and-push-image:

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ authors:
4444
given-names: "Shan E Ahmed"
4545
orcid: "https://orcid.org/0000-0002-1097-1738"
4646
title: "TIAToolbox as an end-to-end library for advanced tissue image analytics"
47-
version: 1.3.2 # TIAToolbox version
47+
version: 1.3.3 # TIAToolbox version
4848
doi: 10.5281/zenodo.5802442
4949
date-released: 2022-10-20
5050
url: "https://github.com/TissueImageAnalytics/tiatoolbox"

HISTORY.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# History
22

3+
## 1.3.3 (2023-03-02)
4+
5+
### Major Updates and Feature Improvements
6+
7+
- Restricts dependency versions for long term stability of the current version
8+
9+
### Changes to API
10+
11+
None
12+
13+
### Bug Fixes and Other Changes
14+
15+
- Fix bug related to reading scikit-image
16+
17+
### Development related changes
18+
19+
- Restricts dependency versions for compatibility
20+
21+
322
## 1.3.2 (2023-02-17)
423

524
### Major Updates and Feature Improvements

requirements.txt

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
# torch installation
22
--extra-index-url https://download.pytorch.org/whl/cu116; sys_platform != "darwin"
3-
albumentations>=1.3.0
4-
Click>=8.1.3
5-
defusedxml>=0.7.1
6-
flask>=2.2.2
7-
glymur>=0.11.7
8-
imagecodecs>=2021.11.20
9-
jupyterlab>=3.4.8
10-
matplotlib>=3.5.3
11-
numpy>=1.21.6, <1.24
12-
opencv-python>=4.6.0
13-
openslide-python>=1.2.0
14-
pandas>=1.3.5
15-
pillow>=9.2.0
16-
pydicom>=2.3.0 # Used by wsidicom
17-
pyyaml>=6.0
18-
requests>=2.28.1
19-
scikit-image>=0.19.3
20-
scikit-learn>=1.0.2
21-
scipy>=1.7.3
3+
albumentations>=1.2.0, <=1.3.0
4+
Click>=8.1.0, <=8.1.3
5+
defusedxml>=0.6.0, <=0.7.1
6+
flask>=2.2.2, <=2.2.3
7+
glymur>=0.11.7, <=0.12.2
8+
imagecodecs>=2021.11.20, <=2023.1.23
9+
jupyterlab>=3.4.8, <=3.6.1
10+
matplotlib>=3.5.3, <=3.7.0
11+
numpy>=1.21.6, <=1.23.5
12+
opencv-python>=4.6.0, <=4.7.0
13+
openslide-python>=1.1.2, <=1.2.0
14+
pandas>=1.3.5, <=1.5.3
15+
pillow>=9.2.0, <=9.4.0
16+
pydicom>=2.3.0, <=2.3.1 # Used by wsidicom
17+
pyyaml>=5.4, <=6.0
18+
requests>=2.28.1, <=2.28.2
19+
scikit-image>=0.19.0, <=0.19.3
20+
scikit-learn>=1.0.2, <=1.2.1
21+
scipy>=1.7.3, <=1.10.1
2222
shapely>=1.8.5, <2.0.0 # Remove 2.0.0 once AnnotationStore is compatible
23-
SimpleITK>=2.1.1
24-
sphinx>=4.3.2
25-
tifffile>=2021.11.2
26-
torch>=1.13.0
27-
torchvision>=0.13.0
28-
tqdm>=4.64.1
29-
umap-learn>=0.5.3
23+
SimpleITK>=2.1.1, <=2.2.1
24+
sphinx>=4.3.2, <=6.1.3
25+
tifffile>=2021.11.2, <=2023.2.28
26+
torch>=1.13.0, <=1.13.1
27+
torchvision>=0.13.0, <=0.14.1
28+
tqdm>=4.63.0, <=4.64.1
29+
umap-learn>=0.5.0, <0.5.3
3030
wsidicom>=0.3.2, <0.7.0
31-
zarr>=2.12.0
31+
zarr>=2.12.0, <=2.14.2

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.2
2+
current_version = 1.3.3
33
commit = True
44
tag = False
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@
6363
test_suite="tests",
6464
tests_require=test_requirements,
6565
url="https://github.com/TissueImageAnalytics/tiatoolbox",
66-
version="1.3.2",
66+
version="1.3.3",
6767
zip_safe=False,
6868
)

tiatoolbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
__author__ = """TIA Lab"""
1212
__email__ = "tialab@dcs.warwick.ac.uk"
13-
__version__ = "1.3.2"
13+
__version__ = "1.3.3"
1414

1515
# This will set the tiatoolbox external data
1616
# default to be the user home folder, should work on both Window and Unix/Linux

0 commit comments

Comments
 (0)