Skip to content

Commit 33f981b

Browse files
author
Martin Larralde
committed
Fix deprecation of Python 3.3 in recent setuptools versions
1 parent 142c2f9 commit 33f981b

File tree

1 file changed

+20
-14
lines changed

1 file changed

+20
-14
lines changed

.travis.yml

+20-14
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,33 @@ cache: pip
55
services:
66
- docker
77

8-
python:
9-
- '2.7'
10-
- '3.3'
11-
- '3.4'
12-
- '3.5'
13-
- '3.6'
14-
- pypy
15-
- pypy-5.3.1
8+
matrix:
9+
include:
10+
- python: "2.7"
11+
env: STLS=setuptools
12+
- python: "3.3"
13+
env: STLS=setuptools~=39.2
14+
- python: "3.4"
15+
env: STLS=setuptools
16+
- python: "3.5"
17+
env: STLS=setuptools
18+
- python: "3.6"
19+
env: STLS=setuptools
20+
- python: pypy
21+
env: STLS=setuptools
22+
- python: pypy3.5
23+
env: STLS=setuptools
24+
allow_failures:
25+
- python: pypy
26+
- python: pypy3.5
1627

1728
addons:
1829
ssh_known_hosts:
1930
- localhost
2031

21-
matrix:
22-
allow_failures:
23-
- python: pypy
24-
- python: pypy-5.3.1
25-
2632
before_install:
2733
- docker pull sjourdan/alpine-sshd
28-
- pip install -U setuptools wheel
34+
- pip install -U $STLS wheel
2935

3036
install:
3137
- pip install .[dev,test]

0 commit comments

Comments
 (0)