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

Commit 4b07563

Browse files
committed
Merge branch 'develop' of github.com:IdentityPython/JWTConnect-Python-OidcMsg into develop
2 parents 088ba31 + dfa81b3 commit 4b07563

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.coveragerc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# .coveragerc to control coverage.py
2+
[run]
3+
source = .

.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:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ If some of these keys have a common origin, like described in a JWKS.
2323
Such a set will be kept in a **keyBundle**.
2424
Also implemented in this package.
2525

26+
Please read the [Official Documentation](https://oidcmsg.readthedocs.io/) for getting usage examples and further informations.

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)