diff --git a/ci/appveyor/install.ps1 b/ci/appveyor/install.ps1 index 94be75ed..888f0957 100644 --- a/ci/appveyor/install.ps1 +++ b/ci/appveyor/install.ps1 @@ -8,9 +8,9 @@ $MINICONDA_URL = "https://repo.continuum.io/miniconda/" function DownloadMiniconda ($python_version, $platform_suffix) { $webclient = New-Object System.Net.WebClient if ($python_version -match "3.4") { - $filename = "Miniconda3-latest-Windows-" + $platform_suffix + ".exe" + $filename = "Miniconda3-3.7.0-Windows-" + $platform_suffix + ".exe" } else { - $filename = "Miniconda-latest-Windows-" + $platform_suffix + ".exe" + $filename = "Miniconda-3.7.0-Windows-" + $platform_suffix + ".exe" } $url = $MINICONDA_URL + $filename diff --git a/etc/requirements_blaze.txt b/etc/requirements_blaze.txt index b78f4f08..71024052 100644 --- a/etc/requirements_blaze.txt +++ b/etc/requirements_blaze.txt @@ -1,5 +1,20 @@ -e git://github.com/quantopian/datashape.git@bf06a41dc0908baf7c324aeacadba8820468ee78#egg=datashape-dev -e git://github.com/quantopian/odo.git@da7f26d87702f5d293763e8ed54c7e25fd3af386#egg=odo-dev + # Keep cytoolz version in sync with toolz version in requirements.txt cytoolz==0.8.2 + +# Transitive dependencies of blaze: +dask[dataframe]==0.13.0 +partd==0.3.7 +locket==0.2.0 +cloudpickle==0.2.1 +itsdangerous==0.24 +flask==0.10.1 +flask-cors==2.1.2 +Jinja2==2.7.3 +MarkupSafe==0.23 +Werkzeug==0.10.4 +psutil==4.3.0 + -e git://github.com/quantopian/blaze.git@729493f0c8adaf5066bc9e7d4897f39fe30a1188#egg=blaze-dev