Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: pin minio<7.0 #35

Merged
merged 3 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/notebooks/e2e-wine/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ boto3
# pin to the latest <2.0 version to ensure compatibility
# with the KFP API server version deployed in CKF 1.7
kfp==1.8.22
minio
# pin to <7.0 to avoid breaking changes in sdk
minio<7.0
# pin the client to match the version of the deployed MLflow server
mlflow==2.1.1
numpy
Expand Down
6 changes: 5 additions & 1 deletion tests/notebooks/e2e-wine/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ cloudpickle==2.2.1
# kfp
# mlflow
# shap
configparser==6.0.0
# via minio
contourpy==1.1.1
# via matplotlib
cycler==0.11.0
Expand Down Expand Up @@ -157,7 +159,7 @@ markupsafe==2.1.3
# werkzeug
matplotlib==3.7.3
# via mlflow
minio==7.1.16
minio==6.0.2
# via -r requirements.in
mlflow==2.1.1
# via -r requirements.in
Expand Down Expand Up @@ -224,9 +226,11 @@ python-dateutil==2.8.2
# kfp-server-api
# kubernetes
# matplotlib
# minio
# pandas
pytz==2022.7.1
# via
# minio
# mlflow
# pandas
pyyaml==6.0.1
Expand Down
3 changes: 2 additions & 1 deletion tests/notebooks/minio/requirements.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
minio
# pin to <7.0 to avoid breaking changes in sdk
minio<7.0
pandas
s3fs
9 changes: 7 additions & 2 deletions tests/notebooks/minio/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ certifi==2023.7.22
# via minio
charset-normalizer==3.2.0
# via aiohttp
configparser==6.0.0
# via minio
frozenlist==1.4.0
# via
# aiohttp
Expand All @@ -34,7 +36,7 @@ idna==3.4
# via yarl
jmespath==1.0.1
# via botocore
minio==7.1.16
minio==6.0.2
# via -r requirements.in
multidict==6.0.4
# via
Expand All @@ -47,9 +49,12 @@ pandas==2.0.3
python-dateutil==2.8.2
# via
# botocore
# minio
# pandas
pytz==2023.3.post1
# via pandas
# via
# minio
# pandas
s3fs==2023.9.1
# via -r requirements.in
six==1.16.0
Expand Down
3 changes: 2 additions & 1 deletion tests/notebooks/mlflow/requirements.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
boto3
minio
# pin to <7.0 to avoid breaking changes in sdk
minio<7.0
# pin the client to match the version of the deployed MLflow server
mlflow==2.1.1
tenacity
6 changes: 5 additions & 1 deletion tests/notebooks/mlflow/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ cloudpickle==2.2.1
# via
# mlflow
# shap
configparser==6.0.0
# via minio
contourpy==1.1.1
# via matplotlib
cycler==0.11.0
Expand Down Expand Up @@ -91,7 +93,7 @@ markupsafe==2.1.3
# werkzeug
matplotlib==3.7.3
# via mlflow
minio==7.1.16
minio==6.0.2
# via -r requirements.in
mlflow==2.1.1
# via -r requirements.in
Expand Down Expand Up @@ -134,9 +136,11 @@ python-dateutil==2.8.2
# via
# botocore
# matplotlib
# minio
# pandas
pytz==2022.7.1
# via
# minio
# mlflow
# pandas
pyyaml==6.0.1
Expand Down