From eed4249f82a37af7589c4453d6afc4cd518dc2d2 Mon Sep 17 00:00:00 2001 From: "pieths.dev@gmail.com" Date: Mon, 3 Jun 2019 17:30:17 -0700 Subject: [PATCH 1/2] Upgrade the pytest-remotedata package to fix missing attribute error. Fixes #117 --- .vsts-ci.yml | 2 ++ build.sh | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index b217ab07..371e4116 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -25,6 +25,8 @@ phases: buildMatrix: Py37: _configuration: RlsMacPy3.7 + Py36: + _configuration: RlsMacPy3.6 buildQueue: name: Hosted macOS diff --git a/build.sh b/build.sh index a4a57545..9573c0a9 100755 --- a/build.sh +++ b/build.sh @@ -258,6 +258,9 @@ then if [ ${PythonVersion} = 2.7 ] then "${PythonExe}" -m pip install --upgrade pyzmq + elif [ ${PythonVersion} = 3.6 ] && [ "$(uname -s)" = "Darwin" ] + then + "${PythonExe}" -m pip install --upgrade pytest-remotedata fi "${PythonExe}" -m pip install --upgrade "${Wheel}" "${PythonExe}" -m pip install "scikit-learn==0.19.2" From 48ad69c3c18ba68b6f7ed9e8d98d60e73d7fb850 Mon Sep 17 00:00:00 2001 From: "pieths.dev@gmail.com" Date: Mon, 3 Jun 2019 20:39:06 -0700 Subject: [PATCH 2/2] Remove the RlsMacPy3.6 configuration from .vsts-ci.yml. --- .vsts-ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 371e4116..b217ab07 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -25,8 +25,6 @@ phases: buildMatrix: Py37: _configuration: RlsMacPy3.7 - Py36: - _configuration: RlsMacPy3.6 buildQueue: name: Hosted macOS