Skip to content

Commit

Permalink
update bundle versions to avoid conflicts (#1682)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
tangy5 and tangy5 authored May 22, 2024
1 parent 1741cb5 commit bedb27e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# please run `./runtests.sh --clean && DOCKER_BUILDKIT=1 docker build -t projectmonai/monailabel:latest .`
# to use different version of MONAI pass `--build-arg MONAI_IMAGE=...`

ARG MONAI_IMAGE=projectmonai/monai:1.3.0
ARG MONAI_IMAGE=projectmonai/monai:1.3.1
ARG NODE_IMAGE=node:slim

FROM ${NODE_IMAGE} as ohifbuild
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire, mlflow]>=1.3.0
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire, mlflow]>=1.3.1
uvicorn==0.29.0
pydantic==2.7.0
pydantic-settings==2.2.1
Expand Down
2 changes: 1 addition & 1 deletion sample-apps/endoscopy/lib/configs/inbody.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def init(self, name: str, model_dir: str, conf: Dict[str, str], planner: Any, **
super().init(name, model_dir, conf, planner, **kwargs)

bundle_name = "endoscopic_inbody_classification"
version = conf.get("inbody", "0.4.4")
version = conf.get("inbody", "0.4.8")
zoo_source = conf.get("zoo_source", settings.MONAI_ZOO_SOURCE)

self.bundle_path = os.path.join(self.model_dir, bundle_name)
Expand Down
2 changes: 1 addition & 1 deletion sample-apps/pathology/lib/configs/classification_nuclei.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def init(self, name: str, model_dir: str, conf: Dict[str, str], planner: Any, **

bundle_name = "pathology_nuclei_classification"
zoo_source = conf.get("zoo_source", settings.MONAI_ZOO_SOURCE)
version = conf.get("classification_nuclei", "0.1.4")
version = conf.get("classification_nuclei", "0.1.7")

self.bundle_path = os.path.join(self.model_dir, bundle_name)
if not os.path.exists(self.bundle_path):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ setup_requires =
torch
ninja
install_requires =
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire, mlflow]>=1.3.0
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire, mlflow]>=1.3.1
uvicorn==0.29.0
pydantic==2.7.0
pydantic-settings==2.2.1
Expand Down

0 comments on commit bedb27e

Please sign in to comment.