@@ -4,7 +4,7 @@ environment:
4
4
# Install appropriate conda here based on TARGET_ARCH
5
5
CONDA_INSTALL_LOCN : " C:\\ conda"
6
6
7
- CONDA_VERSION_PIN : " 4.5 "
7
+ CONDA_VERSION_PIN : " "
8
8
TQDM_PIN : " "
9
9
10
10
# These installs are needed on windows but not other platforms.
@@ -30,13 +30,6 @@ environment:
30
30
- TARGET_ARCH : " x64"
31
31
CONDA_PY : " 3.6"
32
32
CONDA_INSTALL_LOCN : " C:\\ Miniconda36-x64"
33
- - TARGET_ARCH : " x64"
34
- CONDA_PY : " 3.5"
35
- CONDA_INSTALL_LOCN : " C:\\ Miniconda35-x64"
36
- # Need to pin this on python 35 for reasons unfathomable to me (well,
37
- # probably related to the fact that tqdm 4.29.0 is noarch, and
38
- # conda 3.5.11 doesn't handle that well, maybe)
39
- TQDM_PIN : " =4.26"
40
33
41
34
# 32-bit builds
42
35
- TARGET_ARCH : " x86"
@@ -45,13 +38,6 @@ environment:
45
38
- TARGET_ARCH : " x86"
46
39
CONDA_PY : " 3.6"
47
40
CONDA_INSTALL_LOCN : " C:\\ Miniconda36"
48
- - TARGET_ARCH : " x86"
49
- CONDA_PY : " 3.5"
50
- CONDA_INSTALL_LOCN : " C:\\ Miniconda35"
51
- # Need to pin this on python 35 for reasons unfathomable to me (well,
52
- # probably related to the fact that tqdm 4.29.0 is noarch, and
53
- # conda 3.5.11 doesn't handle that well, maybe)
54
- TQDM_PIN : " =4.26"
55
41
56
42
# We always use a 64-bit machine, but can build x86 distributions
57
43
# with the TARGET_ARCH variable.
@@ -81,10 +67,11 @@ install:
81
67
# - cmd: conda update --quiet conda python
82
68
83
69
- echo %CONDA_PY%
70
+ - conda update --quiet conda
84
71
# Need to do this to pick up newer versions of conda
85
72
- if "%CONDA_PY%"=="3.5" conda update --quiet conda
86
73
87
- - cmd : conda install --quiet conda= %CONDA_VERSION_PIN% jinja2 conda-build anaconda-client cython wheel %INSTALL_ON_WINDOWS% tqdm%TQDM_PIN%
74
+ - cmd : conda install --quiet conda%CONDA_VERSION_PIN% jinja2 conda-build anaconda-client cython wheel %INSTALL_ON_WINDOWS% tqdm%TQDM_PIN%
88
75
89
76
# - conda create --quiet -n wheel-build python=%CONDA_PY% wheel cython
90
77
- conda info -a
0 commit comments