From d0e91cfaa1d11cedf6c0a734bb76f7213d76ebdb Mon Sep 17 00:00:00 2001 From: Tom Care Date: Mon, 13 Apr 2020 14:27:25 -0700 Subject: [PATCH] Update CI conda deps to match training/scoring SDK (#263) - Tied SDK version to 1.2.x as with conda_dependencies.yml - Lock versions to point updates - Kept the rest of the deps manually specified to keep image size small and minimize regressions --- diabetes_regression/ci_dependencies.yml | 27 +++++++++++++------------ 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/diabetes_regression/ci_dependencies.yml b/diabetes_regression/ci_dependencies.yml index a6033e42..eeb359f3 100644 --- a/diabetes_regression/ci_dependencies.yml +++ b/diabetes_regression/ci_dependencies.yml @@ -2,26 +2,27 @@ name: mlopspython_ci dependencies: # The python interpreter version. - - python=3.7.5 + - python=3.7.* # dependencies with versions aligned with conda_dependencies.yml. - - numpy=1.18.1 - - pandas=1.0.0 - - scikit-learn=0.22.1 + - numpy=1.18.* + - pandas=1.0.* + - scikit-learn=0.22.* # dependencies for MLOps with R. - r=3.6.0 - r-essentials=3.6.0 - - pip=20.0.2 + - pip=20.0.* + - pip: # dependencies with versions aligned with conda_dependencies.yml. - - azureml-sdk==1.1.5.1 + - azureml-sdk==1.2.* # Additional pip dependencies for the CI environment. - - pytest==5.3.1 - - pytest-cov==2.8.1 - - requests==2.22.0 - - python-dotenv==0.10.3 - - flake8==3.7.9 - - flake8_formatter_junit_xml==0.0.6 - - azure-cli==2.2.0 + - pytest==5.4.* + - pytest-cov==2.8.* + - requests==2.23.* + - python-dotenv==0.12.* + - flake8==3.7.* + - flake8_formatter_junit_xml==0.0.* + - azure-cli==2.3.*