Skip to content

Commit 4076c2d

Browse files
authored
Merge pull request #142 from tomato42/new-python
add python3.8 to tests, enable nightly
2 parents 5fa2fd8 + 30e3b99 commit 4076c2d

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,20 @@ matrix:
2424
env: TOX_ENV=py37
2525
dist: xenial
2626
sudo: true
27+
- python: 3.8
28+
env: TOX_ENV=py38
29+
dist: xenial
30+
sudo: true
31+
- python: nightly
32+
env: TOX_ENV=py
33+
dist: xenial
34+
sudo: true
2735
- python: pypy
2836
env: TOX_ENV=pypy
2937
- python: pypy3
3038
env: TOX_ENV=pypy3
39+
allow_failures:
40+
- python: nightly
3141

3242
install:
3343
- pip list

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"Programming Language :: Python :: 3.5",
3939
"Programming Language :: Python :: 3.6",
4040
"Programming Language :: Python :: 3.7",
41+
"Programming Language :: Python :: 3.8",
4142
],
4243
install_requires=['six'],
4344
)

tox.ini

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11

22
[tox]
3-
envlist = py26, py27, py33, py34, py35, py36, py37, pypy, pypy3
3+
envlist = py26, py27, py33, py34, py35, py36, py37, py38, py, pypy, pypy3
44

55
[testenv]
66
deps =
77
py{33}: py<1.5
88
py{33}: pytest<3.3
99
py{26}: unittest2
10-
py{26,27,34,35,36,37,py,py3}: pytest
10+
py{26,27,34,35,36,37,38,py,py3}: pytest
11+
py: pytest
1112
py{33}: wheel<0.30
1213
coverage
1314
commands = coverage run --branch -m pytest {posargs:src/ecdsa}
@@ -20,7 +21,7 @@ commands = coverage run --branch -m pytest {posargs:src/ecdsa}
2021
commands = {envpython} speed.py
2122

2223
[testenv:codechecks]
23-
basepython = python3.6
24+
basepython = python3
2425
deps =
2526
pyflakes
2627
flake8

0 commit comments

Comments
 (0)