Skip to content

Commit 38e5253

Browse files
committed
add testing on python 3.9
1 parent fe62ed3 commit 38e5253

File tree

2 files changed

+21
-17
lines changed

2 files changed

+21
-17
lines changed

.travis.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,23 @@ matrix:
4444
dist: bionic
4545
sudo: true
4646
- python: 3.8
47+
env: TOX_ENV=py38
48+
dist: bionic
49+
sudo: true
50+
- python: 3.9
4751
env: TOX_ENV=codechecks
4852
dist: bionic
4953
sudo: true
50-
- python: 3.8
51-
env: TOX_ENV=py38
54+
- python: 3.9
55+
env: TOX_ENV=py39
5256
dist: bionic
5357
sudo: true
54-
- python: 3.8
55-
env: TOX_ENV=gmpypy38
58+
- python: 3.9
59+
env: TOX_ENV=gmpypy39
5660
dist: bionic
5761
sudo: true
58-
- python: 3.8
59-
env: TOX_ENV=gmpy2py38
62+
- python: 3.9
63+
env: TOX_ENV=gmpy2py39
6064
dist: bionic
6165
sudo: true
6266
- python: nightly

tox.ini

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
[tox]
3-
envlist = py26, py27, py33, py34, py35, py36, py37, py38, py, pypy, pypy3, gmpy2py27, gmpy2py38, gmpypy27, gmpypy38, codechecks
3+
envlist = py26, py27, py33, py34, py35, py36, py37, py38, py39, py, pypy, pypy3, gmpy2py27, gmpy2py39, gmpypy27, gmpypy39, codechecks
44

55
[testenv]
66
deps =
@@ -10,12 +10,12 @@ deps =
1010
py{33}: hypothesis<3.44
1111
py{26}: unittest2
1212
py{26}: hypothesis<3
13-
py{26,27,34,35,36,37,38,py,py3}: pytest
14-
py{27,34,35,36,37,38,py,py3}: hypothesis
15-
gmpy2py{27,38}: gmpy2
16-
gmpypy{27,38}: gmpy
17-
gmpy{2py27,2py38,py27,py38}: pytest
18-
gmpy{2py27,2py38,py27,py38}: hypothesis
13+
py{26,27,34,35,36,37,38,39,py,py3}: pytest
14+
py{27,34,35,36,37,38,39,py,py3}: hypothesis
15+
gmpy2py{27,39}: gmpy2
16+
gmpypy{27,39}: gmpy
17+
gmpy{2py27,2py39,py27,py39}: pytest
18+
gmpy{2py27,2py39,py27,py39}: hypothesis
1919
# six==1.9.0 comes from setup.py install_requires
2020
py27_old_six: six==1.9.0
2121
py27_old_six: pytest
@@ -46,14 +46,14 @@ basepython = python2.7
4646
[testenv:gmpypy27]
4747
basepython=python2.7
4848

49-
[testenv:gmpypy38]
50-
basepython=python3.8
49+
[testenv:gmpypy39]
50+
basepython=python3.9
5151

5252
[testenv:gmpy2py27]
5353
basepython=python2.7
5454

55-
[testenv:gmpy2py38]
56-
basepython=python3.8
55+
[testenv:gmpy2py39]
56+
basepython=python3.9
5757

5858
[testenv:coverage]
5959
sitepackages=True

0 commit comments

Comments
 (0)