Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BLD/FIX: appveyor: Bump miniconda to fix broken conda #145

Merged
merged 5 commits into from Nov 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -47,6 +47,9 @@ install:
source $HOME/miniconda2/bin/activate condaenv
conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib nose pandas sympy pyparsing dask dill
conda install --yes xarray gcc cython
# install (for py34) and remove gmpy2 for Mac builds
conda install --yes gmpy2
conda remove --force gmpy2 --yes
pip install -e .
fi

Expand Down
5 changes: 2 additions & 3 deletions appveyor.yml
Expand Up @@ -9,10 +9,9 @@ environment:
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python34-conda64"
PYTHON_VERSION: "3.4"
- PYTHON: "C:\\Python35-conda64"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
DISTUTILS_USE_SDK: "1"

- PYTHON: "C:\\Python36-conda64"
PYTHON_VERSION: "3.6"
Expand Down
4 changes: 2 additions & 2 deletions ci/install_python.ps1
Expand Up @@ -9,9 +9,9 @@ $BASE_URL = "https://www.python.org/ftp/python/"
function DownloadMiniconda ($python_version, $platform_suffix) {
$webclient = New-Object System.Net.WebClient
if ($python_version -eq "3.5") {
$filename = "Miniconda3-3.19.0-Windows-" + $platform_suffix + ".exe"
$filename = "Miniconda3-4.3.30-Windows-" + $platform_suffix + ".exe"
} else {
$filename = "Miniconda2-3.19.0-Windows-" + $platform_suffix + ".exe"
$filename = "Miniconda2-4.3.30-Windows-" + $platform_suffix + ".exe"
}
$url = $MINICONDA_URL + $filename

Expand Down