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

Commit a036032

Browse files
committed
travis CI - removed py34 and py35, added isort in deps
1 parent 4a7b018 commit a036032

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ addons:
1111
-
1212
install:
1313
- pip install codecov
14+
- pip install isort
1415
- pip install tox
1516
- pip install tox-travis
1617
script:

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.5",
6059
"Programming Language :: Python :: 3.6",
6160
"Programming Language :: Python :: 3.7",
61+
"Programming Language :: Python :: 3.8",
6262
"Topic :: Software Development :: Libraries :: Python Modules"],
6363
install_requires=[
6464
"cryptojwt>=1.1.0",

tests/test_05_oauth2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
from oidcmsg.oauth2 import AuthorizationResponse
1919
from oidcmsg.oauth2 import CCAccessTokenRequest
2020
from oidcmsg.oauth2 import RefreshAccessTokenRequest
21-
from oidcmsg.oauth2 import TokenExchangeRequest
22-
from oidcmsg.oauth2 import TokenExchangeResponse
2321
from oidcmsg.oauth2 import ResponseMessage
2422
from oidcmsg.oauth2 import ROPCAccessTokenRequest
2523
from oidcmsg.oauth2 import TokenErrorResponse
24+
from oidcmsg.oauth2 import TokenExchangeRequest
25+
from oidcmsg.oauth2 import TokenExchangeResponse
2626
from oidcmsg.oauth2 import factory
2727
from oidcmsg.oauth2 import is_error_message
2828

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{34,35,36},docs,quality
2+
envlist = py{36,37,38},docs,quality
33

44
[testenv]
55
passenv = CI TRAVIS TRAVIS_*
@@ -27,4 +27,4 @@ commands =
2727
max-line-length=100
2828

2929
[pytest]
30-
addopts = --color=yes
30+
addopts = --color=yes

0 commit comments

Comments
 (0)