Skip to content

Commit f35d2c0

Browse files
authored
Merge pull request #19 from RazerM/ci-3.7
Update Travis test matrix
2 parents d0a9291 + 3d531ea commit f35d2c0

File tree

2 files changed

+16
-30
lines changed

2 files changed

+16
-30
lines changed

.travis.yml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,27 @@
11
language: python
2-
python:
3-
- 2.7
4-
- 3.4
5-
- 3.5.0
6-
- 3.5.2
7-
- 3.5-dev
8-
- 3.6
9-
- 3.6-dev
10-
- 3.7-dev
112
sudo: false
123
dist: trusty
134

145
matrix:
156
include:
16-
- os: linux
17-
language: generic
18-
env: USE_PYPY_RELEASE_VERSION=5.9-beta
19-
- os: linux
20-
language: python
21-
python: 3.6
7+
- python: 3.6
228
env: CHECK_DOCS=1
23-
- os: linux
24-
language: python
25-
python: 3.6
9+
- python: 3.6
2610
env: CHECK_FORMATTING=1
11+
- python: pypy
12+
- python: pypy3.5
13+
- python: 2.7
14+
- python: 3.4
15+
- python: 3.5.0
16+
- python: 3.5.2
17+
- python: 3.6
18+
- python: 3.7
19+
dist: xenial
20+
sudo: required
21+
- python: 3.8-dev
22+
dist: xenial
23+
sudo: required
24+
2725

2826
script:
2927
- ci/travis.sh

ci/travis.sh

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,6 @@ if [ "$USE_PYPY_NIGHTLY" = "1" ]; then
3939
source testenv/bin/activate
4040
fi
4141

42-
if [ "$USE_PYPY_RELEASE_VERSION" != "" ]; then
43-
curl -fLo pypy.tar.bz2 https://bitbucket.org/squeaky/portable-pypy/downloads/pypy3.5-${USE_PYPY_RELEASE_VERSION}-linux_x86_64-portable.tar.bz2
44-
tar xaf pypy.tar.bz2
45-
# something like "pypy3.5-5.7.1-beta-linux_x86_64-portable"
46-
PYPY_DIR=$(echo pypy3.5-*)
47-
PYTHON_EXE=$PYPY_DIR/bin/pypy3
48-
$PYTHON_EXE -m ensurepip
49-
$PYTHON_EXE -m pip install virtualenv
50-
$PYTHON_EXE -m virtualenv testenv
51-
source testenv/bin/activate
52-
fi
53-
5442
pip install -U pip setuptools wheel
5543

5644
python setup.py sdist --formats=zip

0 commit comments

Comments
 (0)