From 867576701faaf50a8ff69bf7d84e86753b37902c Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Mon, 18 Mar 2019 00:20:06 +0200
Subject: [PATCH 1/7] Trying to apply advice from error.
Don't see how it would be a cache issue though...
---
appveyor.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/appveyor.yml b/appveyor.yml
index 6f8b75917..6fce833ea 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -31,6 +31,9 @@ install:
# Update previous packages and install the build and runtime dependencies of the project.
# XXX: setuptools>23 is currently broken on Win+py3 with numpy
# (https://github.com/pypa/setuptools/issues/728)
+ conda clean --packages
+ conda update conda
+ conda update --all
- conda update --all --yes setuptools=23
# Install the build and runtime dependencies of the project.
From 58b7365ba414ecfa3639cdc7d503851cd31486f7 Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Mon, 18 Mar 2019 00:22:17 +0200
Subject: [PATCH 2/7] Fix syntax.
Editing the script directly on Github :D easy to miss
---
appveyor.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml
index 6fce833ea..2f4751005 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -31,9 +31,9 @@ install:
# Update previous packages and install the build and runtime dependencies of the project.
# XXX: setuptools>23 is currently broken on Win+py3 with numpy
# (https://github.com/pypa/setuptools/issues/728)
- conda clean --packages
- conda update conda
- conda update --all
+ - conda clean --packages
+ - conda update conda
+ - conda update --all
- conda update --all --yes setuptools=23
# Install the build and runtime dependencies of the project.
From 1cd83fb56be2f5240517aa15c0725e723cc4e02a Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Mon, 18 Mar 2019 00:57:25 +0200
Subject: [PATCH 3/7] add -y flags for updates
---
appveyor.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml
index 2f4751005..473fca76d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -32,8 +32,8 @@ install:
# XXX: setuptools>23 is currently broken on Win+py3 with numpy
# (https://github.com/pypa/setuptools/issues/728)
- conda clean --packages
- - conda update conda
- - conda update --all
+ - conda update conda --yes
+ - conda update --all --yes
- conda update --all --yes setuptools=23
# Install the build and runtime dependencies of the project.
From 90e5e935bdf38c3d5b56f9cfdd8f55596c07585f Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Mon, 18 Mar 2019 09:46:00 +0200
Subject: [PATCH 4/7] Test if setuptools 23 is still required
---
appveyor.yml | 1 -
1 file changed, 1 deletion(-)
diff --git a/appveyor.yml b/appveyor.yml
index 473fca76d..51720657a 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -34,7 +34,6 @@ install:
- conda clean --packages
- conda update conda --yes
- conda update --all --yes
- - conda update --all --yes setuptools=23
# Install the build and runtime dependencies of the project.
- "cd C:\\projects\\openml-python"
From c9ea703826c81197cd0410abc903111fc422e888 Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Mon, 18 Mar 2019 10:06:49 +0200
Subject: [PATCH 5/7] See if clean step can be omitted.
---
appveyor.yml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml
index 51720657a..a4aecd8b7 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -29,9 +29,6 @@ install:
- rmdir C:\\cygwin /s /q
# Update previous packages and install the build and runtime dependencies of the project.
- # XXX: setuptools>23 is currently broken on Win+py3 with numpy
- # (https://github.com/pypa/setuptools/issues/728)
- - conda clean --packages
- conda update conda --yes
- conda update --all --yes
From 61c7a1873636b9225a96579835bacb81b9283399 Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Mon, 18 Mar 2019 10:41:59 +0200
Subject: [PATCH 6/7] See if we can also forgo the explicit conda update
---
appveyor.yml | 1 -
1 file changed, 1 deletion(-)
diff --git a/appveyor.yml b/appveyor.yml
index a4aecd8b7..109295059 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -29,7 +29,6 @@ install:
- rmdir C:\\cygwin /s /q
# Update previous packages and install the build and runtime dependencies of the project.
- - conda update conda --yes
- conda update --all --yes
# Install the build and runtime dependencies of the project.
From e26ff32f21b87b389696ad20989d47b7a20e777c Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Mon, 18 Mar 2019 11:22:20 +0200
Subject: [PATCH 7/7] Conda update is required
Otherwise the link error persists.
---
appveyor.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/appveyor.yml b/appveyor.yml
index 109295059..a4aecd8b7 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -29,6 +29,7 @@ install:
- rmdir C:\\cygwin /s /q
# Update previous packages and install the build and runtime dependencies of the project.
+ - conda update conda --yes
- conda update --all --yes
# Install the build and runtime dependencies of the project.