Add CI build for Python 3.7
This commit is contained in:
parent
78e8f05360
commit
df18acf135
4 changed files with 7 additions and 5 deletions
|
@ -4,9 +4,9 @@ python:
|
|||
- "3.4"
|
||||
- "3.5"
|
||||
- "3.6"
|
||||
- "3.7"
|
||||
cache: pip
|
||||
dist: trusty
|
||||
sudo: false
|
||||
dist: xenial
|
||||
# command to install dependencies
|
||||
install:
|
||||
- pip install -U tox-travis setuptools codecov
|
||||
|
@ -27,4 +27,4 @@ deploy:
|
|||
script: .github/deploy.sh
|
||||
on:
|
||||
branch: master
|
||||
python: 3.6
|
||||
python: 3.7
|
||||
|
|
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
|
@ -1,5 +1,6 @@
|
|||
def pys = [
|
||||
[name: 'Python 3.6', docker:'python:3.6-stretch', tox:'py36,flake8', main: true],
|
||||
[name: 'Python 3.7', docker:'python:3.7-stretch', tox:'py37,flake8', main: true],
|
||||
[name: 'Python 3.6', docker:'python:3.6-stretch', tox:'py36', main: false],
|
||||
[name: 'Python 3.5', docker:'python:3.5-jessie', tox:'py35', main: false],
|
||||
[name: 'Python 2.7', docker:'python:2.7-stretch', tox:'py27', main: false]
|
||||
]
|
||||
|
|
|
@ -22,6 +22,7 @@ classifier =
|
|||
Programming Language :: Python :: 3.4
|
||||
Programming Language :: Python :: 3.5
|
||||
Programming Language :: Python :: 3.6
|
||||
Programming Language :: Python :: 3.7
|
||||
Operating System :: OS Independent
|
||||
|
||||
[files]
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py27, py34, py35, py36, flake8
|
||||
envlist = py27, py34, py35, py36, py37, flake8
|
||||
|
||||
[testenv]
|
||||
commands =
|
||||
|
|
Loading…
Reference in a new issue