Skip to content

Commit 24390e5

Browse files
authored
🔖 REL: Release 1.3.2 (#541)
- 🚑 Hotfix - Restricts wsidicom version to \<0.7.0 for compatibility - Fix bug related to reading DICOM files
1 parent ce788a3 commit 24390e5

File tree

7 files changed

+27
-8
lines changed

7 files changed

+27
-8
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.1
9+
TOOLBOX_VER: 1.3.2
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.1 # TIAToolbox version
47+
version: 1.3.2 # 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: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# History
22

3-
# 1.3.1 (2022-12-20)
3+
## 1.3.2 (2023-02-17)
4+
5+
### Major Updates and Feature Improvements
6+
7+
None
8+
9+
### Changes to API
10+
11+
None
12+
13+
### Bug Fixes and Other Changes
14+
15+
- Fix bug related to reading DICOM files
16+
17+
### Development related changes
18+
19+
- Restricts wsidicom version to \<0.7.0 for compatibility
20+
21+
22+
## 1.3.1 (2022-12-20)
423

524
### Major Updates and Feature Improvements
625

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ glymur>=0.11.7
88
imagecodecs>=2021.11.20
99
jupyterlab>=3.4.8
1010
matplotlib>=3.5.3
11-
numpy>=1.21.6
11+
numpy>=1.21.6, <1.24
1212
opencv-python>=4.6.0
1313
openslide-python>=1.2.0
1414
pandas>=1.3.5
@@ -27,5 +27,5 @@ torch>=1.13.0
2727
torchvision>=0.13.0
2828
tqdm>=4.64.1
2929
umap-learn>=0.5.3
30-
wsidicom>=0.3.2
30+
wsidicom>=0.3.2, <0.7.0
3131
zarr>=2.12.0

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.1
2+
current_version = 1.3.2
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.1",
66+
version="1.3.2",
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.1"
13+
__version__ = "1.3.2"
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)