Skip to content

Commit 6fc3458

Browse files
peymanslhbbc2
authored andcommitted
Add python 3.9 to CI
1 parent 7b172fe commit 6fc3458

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
env: TOXENV=py37
2020
- python: "3.8"
2121
env: TOXENV=py38
22+
- python: "3.9-dev"
23+
env: TOXENV=py39
2224
- python: "pypy"
2325
env: TOXENV=pypy
2426
- python: "pypy3"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def read_files(files):
5353
'Programming Language :: Python :: 3.6',
5454
'Programming Language :: Python :: 3.7',
5555
'Programming Language :: Python :: 3.8',
56+
'Programming Language :: Python :: 3.9',
5657
'Programming Language :: Python :: Implementation :: PyPy',
5758
'Intended Audience :: Developers',
5859
'Intended Audience :: System Administrators',

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py{27,34,35,36,37,38,34-no-typing},pypy,pypy3,manifest,coverage-report
2+
envlist = lint,py{27,34,35,36,37,38,39,34-no-typing},pypy,pypy3,manifest,coverage-report
33

44
[testenv]
55
deps =
@@ -10,7 +10,7 @@ deps =
1010
click
1111
py{27,py}: ipython<6.0.0
1212
py34{,-no-typing}: ipython<7.0.0
13-
py{35,36,37,38,py3}: ipython
13+
py{35,36,37,38,39,py3}: ipython
1414
commands = coverage run --parallel -m pytest {posargs}
1515

1616
[testenv:py34-no-typing]
@@ -25,6 +25,7 @@ deps =
2525
mypy
2626
commands =
2727
flake8 src tests
28+
mypy --python-version=3.9 src tests
2829
mypy --python-version=3.8 src tests
2930
mypy --python-version=3.7 src tests
3031
mypy --python-version=3.6 src tests

0 commit comments

Comments
 (0)