Skip to content

Commit 1d1a825

Browse files
committed
Bumps version to 1.2.3
1 parent bd6717c commit 1d1a825

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

delia/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
logging.getLogger(__name__).addHandler(stream_handler)
1010

1111
__author__ = "Maxence Larose"
12-
__version__ = "1.2.2"
12+
__version__ = "1.2.3"
1313
__copyright__ = "Copyright 2022, Maxence Larose"
1414
__credits__ = ["Maxence Larose"]
1515
__license__ = "Apache License 2.0"

delia/databases/patients_database.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ def create(
262262
organs_to_keep = [organs_to_keep]
263263

264264
with h5py.File(self.path_to_database, "w") as file:
265+
patients_data_extractor.reset()
265266
number_of_patients = len(patients_data_extractor)
266267
for patient_idx, patient_dataset in enumerate(patients_data_extractor):
267268
patient_id = patient_dataset.patient_id

setup.py

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

33
setuptools.setup(
44
name="delia",
5-
version="1.2.2",
5+
version="1.2.3",
66
author="Maxence Larose",
77
author_email="maxence.larose.1@ulaval.ca",
88
description="DICOM Extraction for Large-scale Image Analysis (DELIA).",

0 commit comments

Comments
 (0)