Skip to content

Commit 2228b5e

Browse files
authored
Ci appveyor (#8855)
CI: drop python 2.7 from appveyor until conda-build patch is released conda-build issue: conda/conda-build#2168 conda-build patch: conda/conda-build#2176
1 parent 454dbbb commit 2228b5e

File tree

1 file changed

+15
-21
lines changed

1 file changed

+15
-21
lines changed

.appveyor.yml

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,24 @@ environment:
2424
# theoretically the CONDA_INSTALL_LOCN could be only two: one for 32bit,
2525
# one for 64bit because we construct envs anyway. But using one for the
2626
# right python version is hopefully making it fast due to package caching.
27-
- TARGET_ARCH: "x64"
28-
CONDA_PY: "27"
29-
CONDA_NPY: "18"
30-
PYTHON_VERSION: "2.7"
31-
TEST_ALL: "no"
32-
CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"
27+
# - TARGET_ARCH: "x64"
28+
# CONDA_PY: "27"
29+
# CONDA_NPY: "18"
30+
# PYTHON_VERSION: "2.7"
31+
# TEST_ALL: "no"
32+
# CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"
3333
- TARGET_ARCH: "x64"
3434
CONDA_PY: "35"
3535
CONDA_NPY: "110"
3636
PYTHON_VERSION: "3.5"
37-
TEST_ALL: "no"
3837
CONDA_INSTALL_LOCN: "C:\\Miniconda35-x64"
39-
- TARGET_ARCH: "x86"
40-
CONDA_PY: "27"
41-
CONDA_NPY: "18"
42-
PYTHON_VERSION: "2.7"
43-
# this variable influence pdf/svg and most importantly the latex related tests
44-
# which triples the runtime of the tests (7-8min vs 30min).
45-
# pick the one which seems to make the most problems and run it last, so that
46-
# the rest of the tests can give feedback earlier
47-
TEST_ALL: "yes"
48-
CONDA_INSTALL_LOCN: "C:\\Miniconda"
38+
TEST_ALL: "no"
39+
- TARGET_ARCH: "x64"
40+
CONDA_PY: "36"
41+
PYTHON_VERSION: "3.6"
42+
CONDA_NPY: "111"
43+
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
44+
TEST_ALL: "no"
4945

5046
# We always use a 64-bit machine, but can build x86 distributions
5147
# with the PYTHON_ARCH variable (which is used by CMD_IN_ENV).
@@ -66,11 +62,9 @@ install:
6662
- set PATH=%CONDA_INSTALL_LOCN%;%CONDA_INSTALL_LOCN%\scripts;%PATH%;
6763
- set PYTHONUNBUFFERED=1
6864
# for obvci_appveyor_python_build_env.cmd
69-
- conda install -c pelson/channel/development --yes --quiet obvious-ci
65+
- conda install -c conda-forge --yes --quiet obvious-ci
7066
# for msinttypes and newer stuff
71-
# conda-forge may serve outdated versions of certain packages (e.g. conda
72-
# itself), so append it to the end of the list.
73-
- conda config --append channels conda-forge
67+
- conda config --prepend channels conda-forge
7468
- conda config --set show_channel_urls yes
7569
- conda config --set always_yes true
7670
# For building conda packages

0 commit comments

Comments
 (0)