Skip to content

Commit bedb27e

Browse files
tangy5tangy5
andauthored
update bundle versions to avoid conflicts (#1682)
* update bundle versions to avoid conflicts Signed-off-by: tangy5 <[email protected]> * change monai dependencies to 131 Signed-off-by: tangy5 <[email protected]> --------- Signed-off-by: tangy5 <[email protected]> Signed-off-by: tangy5 <[email protected]> Co-authored-by: tangy5 <[email protected]>
1 parent 1741cb5 commit bedb27e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# please run `./runtests.sh --clean && DOCKER_BUILDKIT=1 docker build -t projectmonai/monailabel:latest .`
1414
# to use different version of MONAI pass `--build-arg MONAI_IMAGE=...`
1515

16-
ARG MONAI_IMAGE=projectmonai/monai:1.3.0
16+
ARG MONAI_IMAGE=projectmonai/monai:1.3.1
1717
ARG NODE_IMAGE=node:slim
1818

1919
FROM ${NODE_IMAGE} as ohifbuild

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# See the License for the specific language governing permissions and
1010
# limitations under the License.
1111

12-
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire, mlflow]>=1.3.0
12+
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire, mlflow]>=1.3.1
1313
uvicorn==0.29.0
1414
pydantic==2.7.0
1515
pydantic-settings==2.2.1

sample-apps/endoscopy/lib/configs/inbody.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def init(self, name: str, model_dir: str, conf: Dict[str, str], planner: Any, **
3535
super().init(name, model_dir, conf, planner, **kwargs)
3636

3737
bundle_name = "endoscopic_inbody_classification"
38-
version = conf.get("inbody", "0.4.4")
38+
version = conf.get("inbody", "0.4.8")
3939
zoo_source = conf.get("zoo_source", settings.MONAI_ZOO_SOURCE)
4040

4141
self.bundle_path = os.path.join(self.model_dir, bundle_name)

sample-apps/pathology/lib/configs/classification_nuclei.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def init(self, name: str, model_dir: str, conf: Dict[str, str], planner: Any, **
3131

3232
bundle_name = "pathology_nuclei_classification"
3333
zoo_source = conf.get("zoo_source", settings.MONAI_ZOO_SOURCE)
34-
version = conf.get("classification_nuclei", "0.1.4")
34+
version = conf.get("classification_nuclei", "0.1.7")
3535

3636
self.bundle_path = os.path.join(self.model_dir, bundle_name)
3737
if not os.path.exists(self.bundle_path):

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ setup_requires =
3535
torch
3636
ninja
3737
install_requires =
38-
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire, mlflow]>=1.3.0
38+
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire, mlflow]>=1.3.1
3939
uvicorn==0.29.0
4040
pydantic==2.7.0
4141
pydantic-settings==2.2.1

0 commit comments

Comments
 (0)