File tree Expand file tree Collapse file tree 2 files changed +16
-30
lines changed Expand file tree Collapse file tree 2 files changed +16
-30
lines changed Original file line number Diff line number Diff line change 1
1
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
11
2
sudo : false
12
3
dist : trusty
13
4
14
5
matrix :
15
6
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
22
8
env : CHECK_DOCS=1
23
- - os : linux
24
- language : python
25
- python : 3.6
9
+ - python : 3.6
26
10
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
+
27
25
28
26
script :
29
27
- ci/travis.sh
Original file line number Diff line number Diff line change @@ -39,18 +39,6 @@ if [ "$USE_PYPY_NIGHTLY" = "1" ]; then
39
39
source testenv/bin/activate
40
40
fi
41
41
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
-
54
42
pip install -U pip setuptools wheel
55
43
56
44
python setup.py sdist --formats=zip
You can’t perform that action at this time.
0 commit comments