= commited on
Commit
e9ddc46
·
1 Parent(s): 3a33d4e

test on multiple py versions

Browse files
Files changed (2) hide show
  1. .travis.yml +2 -6
  2. tox.ini +1 -4
.travis.yml CHANGED
@@ -1,6 +1,5 @@
1
  # Config file for automatic testing at travis-ci.com
2
- os: linux
3
- sudo: enabled
4
  language: python
5
  python:
6
  - 3.8
@@ -8,16 +7,13 @@ python:
8
  - 3.6
9
  - 3.5
10
  - 3.4
11
- - 3.3
12
- - 3.2
13
- - 3.1
14
  - 3.0
15
  - 2.7
16
  before_install:
17
  - "pip install -U pip"
18
  - "python setup.py install"
19
 
20
- dist: bionic
21
  # Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
22
  install: pip install -U tox-travis
23
 
 
1
  # Config file for automatic testing at travis-ci.com
2
+
 
3
  language: python
4
  python:
5
  - 3.8
 
7
  - 3.6
8
  - 3.5
9
  - 3.4
 
 
 
10
  - 3.0
11
  - 2.7
12
  before_install:
13
  - "pip install -U pip"
14
  - "python setup.py install"
15
 
16
+ dist: xenial
17
  # Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
18
  install: pip install -U tox-travis
19
 
tox.ini CHANGED
@@ -1,5 +1,5 @@
1
  [tox]
2
- envlist = py34, py35, py36, py37, py38, flake8
3
 
4
  [travis]
5
  python =
@@ -8,9 +8,6 @@ python =
8
  3.6: py36
9
  3.5: py35
10
  3.4: py34
11
- 3.3: py33
12
- 3.2: py32
13
- 3.1: py31
14
  3.0: py30
15
  2.7: py27
16
 
 
1
  [tox]
2
+ envlist = py27, py30, py34, py35, py36, py37, py38, flake8
3
 
4
  [travis]
5
  python =
 
8
  3.6: py36
9
  3.5: py35
10
  3.4: py34
 
 
 
11
  3.0: py30
12
  2.7: py27
13