Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit ad30ba6

Browse files
committed
Modified setup
1 parent 5251a0f commit ad30ba6

File tree

2 files changed

+19
-20
lines changed

2 files changed

+19
-20
lines changed

.travis.yml

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
1-
language: python
2-
31
sudo: false
42

5-
python: 3.6
3+
language: python
4+
python:
5+
- 3.6
6+
- 3.7
7+
- pypy3
8+
9+
addons:
10+
apt:
11+
packages:
12+
-
613

714
install:
15+
- pip install codecov
816
- pip install tox
17+
- pip install tox-travis
918

10-
env:
11-
- TOXENV=py34
12-
- TOXENV=py35
13-
- TOXENV=py36
14-
- TOXENV=py37
15-
- TOXENV=quality
16-
- TOXENV=docs
17-
18-
# Everything behaves under python 3.6 except python3.5
19-
matrix:
20-
include:
21-
- python: 3.5
22-
env: TOXENV=py35
23-
- env: TOXENV=isort-check
2419
script:
25-
- tox -e $TOXENV
20+
- codecov --version
21+
- tox
22+
23+
after_success:
24+
- codecov
2625

2726
notifications:
28-
email: false
27+
email: false

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ def run_tests(self):
5656
classifiers=[
5757
"Development Status :: 4 - Beta",
5858
"License :: OSI Approved :: Apache Software License",
59-
"Programming Language :: Python :: 3.4",
6059
"Programming Language :: Python :: 3.5",
6160
"Programming Language :: Python :: 3.6",
61+
"Programming Language :: Python :: 3.7",
6262
"Topic :: Software Development :: Libraries :: Python Modules"],
6363
install_requires=[
6464
"cryptojwt>=0.6.6",

0 commit comments

Comments
 (0)