Codebase list python-procrunner / a119409
Drop Python 3.3 Markus Gerstel 6 years ago
5 changed file(s) with 23 addition(s) and 27 deletion(s). Raw diff Collapse all Expand all
11 # see https://pyup.io/docs/configuration/ for all available options
22
33 schedule: every week
4
00 # Config file for automatic testing at travis-ci.org
11
22 language: python
3 python:
4 - 3.6
5 - 3.5
6 - 3.4
7 - 3.3
8 - 2.7
3
4 matrix:
5 include:
6 - python: 3.8-dev
7 env: MTX=3.8
8 - python: 3.7-dev
9 env: MTX=3.7
10 - python: 3.6
11 env: MTX=3.6
12 - python: 3.5
13 env: MTX=3.5
14 - python: 3.4
15 env: MTX=3.4
16 - python: 2.7
17 env: MTX=2.7
18
19 allow_failures:
20 - env: MTX=3.7
21 - env: MTX=3.8
922
1023 # Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
1124 install: pip install -U tox-travis
+0
-14
requirements_33.txt less more
0 pip==9.0.1
1 bumpversion==0.5.3
2 wheel==0.30.0
3 watchdog==0.8.3
4 flake8==3.5.0
5 tox==2.9.1
6 coverage==4.5.1
7 six
8 Sphinx==1.7.1
9 twine==1.10.0
10
11 mock
12 pytest
13 pytest-runner==4.0
2828 "Programming Language :: Python :: 2",
2929 'Programming Language :: Python :: 2.7',
3030 'Programming Language :: Python :: 3',
31 'Programming Language :: Python :: 3.3',
3231 'Programming Language :: Python :: 3.4',
3332 'Programming Language :: Python :: 3.5',
3433 'Programming Language :: Python :: 3.6',
00 [tox]
1 envlist = py27, py33, py34, py35, py36, flake8
1 envlist = py27, py34, py35, py36, py37, py38, flake8
22
33 [travis]
44 python =
5 3.8: py38
6 3.7: py37
57 3.6: py36
68 3.5: py35
79 3.4: py34
8 3.3: py33
910 2.7: py27
1011
1112 [testenv:flake8]
1213 basepython = python
1314 deps = flake8
1415 commands = flake8 procrunner
15
16 [testenv:py33]
17 deps =
18 -r{toxinidir}/requirements_33.txt
1916
2017 [testenv]
2118 setenv =