From 60033231b9167438032843c23158c0c776856e0e Mon Sep 17 00:00:00 2001 From: miguelgfierro Date: Thu, 13 Jan 2022 10:36:20 +0100 Subject: [PATCH] fix :bug: in release pipeline due to deps in pymanopt and surprise --- tests/ci/azure_pipeline_test/release_pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ci/azure_pipeline_test/release_pipeline.yml b/tests/ci/azure_pipeline_test/release_pipeline.yml index 065906aaaf..a37d9a549c 100644 --- a/tests/ci/azure_pipeline_test/release_pipeline.yml +++ b/tests/ci/azure_pipeline_test/release_pipeline.yml @@ -23,7 +23,7 @@ jobs: task_name: "Test - Unit Linux CPU" conda_env: "release_unit_linux_cpu" conda_opts: "python=3.6" - pip_opts: "[experimental,dev] --no-cache --no-binary scikit-surprise" + pip_opts: "[experimental,dev] 'scikit-surprise@https://github.com/NicolasHug/Surprise/archive/refs/tags/v1.1.1.tar.gz' 'pymanopt@https://github.com/pymanopt/pymanopt/archive/fb36a272cdeecb21992cfd9271eb82baafeb316d.zip' --no-cache --no-binary scikit-surprise" pytest_markers: "not notebooks and not spark and not gpu" install: "release" package: "publish" @@ -35,7 +35,7 @@ jobs: task_name: "Test - Unit Notebook Linux CPU" conda_env: "release_unit_notebook_linux_cpu" conda_opts: "python=3.6" - pip_opts: "[experimental,examples,dev] --no-cache --no-binary scikit-surprise" + pip_opts: "[experimental,examples,dev] 'scikit-surprise@https://github.com/NicolasHug/Surprise/archive/refs/tags/v1.1.1.tar.gz' 'pymanopt@https://github.com/pymanopt/pymanopt/archive/fb36a272cdeecb21992cfd9271eb82baafeb316d.zip' --no-cache --no-binary scikit-surprise" pytest_markers: "notebooks and not spark and not gpu" install: "release" @@ -93,7 +93,7 @@ jobs: timeout: 180 conda_env: "release_nightly_linux_cpu" conda_opts: "python=3.6" - pip_opts: "[experimental,examples,dev] --no-cache --no-binary scikit-surprise" + pip_opts: "[experimental,examples,dev] 'scikit-surprise@https://github.com/NicolasHug/Surprise/archive/refs/tags/v1.1.1.tar.gz' 'pymanopt@https://github.com/pymanopt/pymanopt/archive/fb36a272cdeecb21992cfd9271eb82baafeb316d.zip' --no-cache --no-binary scikit-surprise" pytest_markers: "not spark and not gpu" install: "release"