Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fengzch-das
multibuild
Commits
054e8c50
Commit
054e8c50
authored
Mar 27, 2017
by
Sergei Lebedev
Browse files
Use latest Miniconda distribution on Appveyor
parent
acd71c71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ci/appveyor/install.ps1
ci/appveyor/install.ps1
+3
-3
No files found.
ci/appveyor/install.ps1
View file @
054e8c50
...
@@ -7,10 +7,10 @@ $MINICONDA_URL = "http://repo.continuum.io/miniconda/"
...
@@ -7,10 +7,10 @@ $MINICONDA_URL = "http://repo.continuum.io/miniconda/"
function
DownloadMiniconda
(
$python_version
,
$platform_suffix
)
{
function
DownloadMiniconda
(
$python_version
,
$platform_suffix
)
{
$webclient
=
New-Object
System.Net.WebClient
$webclient
=
New-Object
System.Net.WebClient
if
(
$python_version
-
match
"3
.4
"
)
{
if
(
$python_version
-
gt
"3"
)
{
$filename
=
"Miniconda3-
3.5.5
-Windows-"
+
$platform_suffix
+
".exe"
$filename
=
"Miniconda3-
latest
-Windows-"
+
$platform_suffix
+
".exe"
}
else
{
}
else
{
$filename
=
"Miniconda-
3.5.5
-Windows-"
+
$platform_suffix
+
".exe"
$filename
=
"Miniconda-
latest
-Windows-"
+
$platform_suffix
+
".exe"
}
}
$url
=
$MINICONDA_URL
+
$filename
$url
=
$MINICONDA_URL
+
$filename
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment