Skip to content

Commit 98ff0a0

Browse files
committed
Drop 2.7 from windows CI (compiler broken on new image or something) and force upgrade packages on travis (borken deps?!).
1 parent 62382b4 commit 98ff0a0

File tree

4 files changed

+3
-27
lines changed

4 files changed

+3
-27
lines changed

.appveyor.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,6 @@ environment:
1212
PYTHON_HOME: C:\Python36
1313
PYTHON_VERSION: '3.6'
1414
PYTHON_ARCH: '32'
15-
- TOXENV: py27-cover,codecov,coveralls
16-
TOXPYTHON: C:\Python27\python.exe
17-
PYTHON_HOME: C:\Python27
18-
PYTHON_VERSION: '2.7'
19-
PYTHON_ARCH: '32'
20-
- TOXENV: py27-cover,codecov,coveralls
21-
TOXPYTHON: C:\Python27-x64\python.exe
22-
PYTHON_HOME: C:\Python27-x64
23-
PYTHON_VERSION: '2.7'
24-
PYTHON_ARCH: '64'
25-
WINDOWS_SDK_VERSION: v7.0
26-
- TOXENV: py27-nocov
27-
TOXPYTHON: C:\Python27\python.exe
28-
PYTHON_HOME: C:\Python27
29-
PYTHON_VERSION: '2.7'
30-
PYTHON_ARCH: '32'
31-
WHEEL_PATH: .tox/dist
32-
- TOXENV: py27-nocov
33-
TOXPYTHON: C:\Python27-x64\python.exe
34-
PYTHON_HOME: C:\Python27-x64
35-
PYTHON_VERSION: '2.7'
36-
PYTHON_ARCH: '64'
37-
WHEEL_PATH: .tox/dist
38-
WINDOWS_SDK_VERSION: v7.0
3915
- TOXENV: py35-cover,codecov,coveralls
4016
TOXPYTHON: C:\Python35\python.exe
4117
PYTHON_HOME: C:\Python35

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ before_install:
153153
export PATH="/usr/local/opt/python/libexec/bin:${PATH}"
154154
fi
155155
install:
156-
- python -mpip install --progress-bar=off twine tox-wheel -rci/requirements.txt
156+
- python -mpip install --progress-bar=off --upgrade twine tox-wheel -rci/requirements.txt
157157
- virtualenv --version
158158
- easy_install --version
159159
- pip --version

ci/templates/.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ environment:
1313
PYTHON_VERSION: '3.6'
1414
PYTHON_ARCH: '32'
1515
{% for env in tox_environments %}
16-
{% if env.startswith(('py2', 'py3')) %}
16+
{% if env.startswith('py3') %}
1717
- TOXENV: {{ env }}{% if env.endswith('-cover') %},codecov,coveralls{% endif %}{{ "" }}
1818
TOXPYTHON: C:\Python{{ env[2:4] }}\python.exe
1919
PYTHON_HOME: C:\Python{{ env[2:4] }}

ci/templates/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ before_install:
5858
export PATH="/usr/local/opt/python/libexec/bin:${PATH}"
5959
fi
6060
install:
61-
- python -mpip install --progress-bar=off twine tox-wheel -rci/requirements.txt
61+
- python -mpip install --progress-bar=off --upgrade twine tox-wheel -rci/requirements.txt
6262
- virtualenv --version
6363
- easy_install --version
6464
- pip --version

0 commit comments

Comments
 (0)