diff --git a/docker/conda/environments/cuda11.8_examples.yml b/docker/conda/environments/cuda11.8_examples.yml index 4b018b08d4..a878484df7 100644 --- a/docker/conda/environments/cuda11.8_examples.yml +++ b/docker/conda/environments/cuda11.8_examples.yml @@ -24,7 +24,7 @@ channels: - nvidia - conda-forge dependencies: - - boto3=1.24.59 + - boto3 - chardet=5.0.0 - cuml=23.06 - dask>=2023.1.1 @@ -32,7 +32,7 @@ dependencies: - distributed>=2023.1.1 - mlflow>=2.2.1,<3 - papermill=2.3.4 - - s3fs==2022.8.2 + - s3fs>=2023.6 - pip - wrapt=1.14.1 # ver 1.15 breaks the keras model used by the gnn_fraud_detection_pipeline - pip: diff --git a/examples/digital_fingerprinting/production/conda_env.yml b/examples/digital_fingerprinting/production/conda_env.yml index 9104972ec1..5d01b94652 100644 --- a/examples/digital_fingerprinting/production/conda_env.yml +++ b/examples/digital_fingerprinting/production/conda_env.yml @@ -30,4 +30,4 @@ dependencies: - mlflow>=2.2.1,<3 - nodejs=17.4.0 - papermill - - s3fs==2022.8.2 + - s3fs>=2023.6 diff --git a/examples/digital_fingerprinting/production/mlflow/Dockerfile b/examples/digital_fingerprinting/production/mlflow/Dockerfile index 83b39fecf7..0afdfc44c1 100644 --- a/examples/digital_fingerprinting/production/mlflow/Dockerfile +++ b/examples/digital_fingerprinting/production/mlflow/Dockerfile @@ -24,7 +24,7 @@ RUN apt update && \ rm -rf /var/cache/apt/* /var/lib/apt/lists/* # Install python packages -RUN pip install "mlflow>1.29.0,<2" boto3 pymysql pyyaml +RUN pip install "mlflow >=2.2.1,<3" boto3 pymysql pyyaml # We run on port 5000 EXPOSE 5000