Skip to content

Commit

Permalink
setup.py: upgrade requirements
Browse files Browse the repository at this point in the history
- upgrade python3-saml to latest version, fixes CVE-2017-11427
- upgrade invenio-oauthclient to latest version
  • Loading branch information
Tobias Frust committed Mar 8, 2018
1 parent fb4ee90 commit b0a7ea6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -213,5 +213,5 @@
'invenio-oauthclient': ('https://invenio-oauthclient.readthedocs.io/en/latest/',
None),
'invenio-accounts': ('https://invenio-accounts.readthedocs.io/en/latest/', None),
'flask': ('https://flask.readthedocs.io/en/latest/', None),
'flask': ('http://flask.pocoo.org/docs/latest/', None),
}
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -28,7 +28,7 @@
tests_require = [
'check-manifest>=0.35',
'coverage>=4.0',
'invenio-accounts>=1.0.0b8',
'invenio-accounts>=1.0.0b12',
'invenio-userprofiles>=1.0.0b2',
'isort>=4.2.5',
'mock>=1.3.0',
Expand All @@ -48,7 +48,7 @@
'Flask>=0.11.1',
'Flask-Login>=0.3.2',
'Flask-WTF>=0.13.1',
'python3-saml>=1.2.6',
'python3-saml>=1.4.0',
'uritools>=1.0.1',
]

Expand All @@ -58,13 +58,13 @@
'Sphinx>=1.5.1',
],
'mysql': [
'invenio-oauthclient[mysql]>=1.0.0b3',
'invenio-oauthclient[mysql]>=1.0.0b5',
],
'postgresql': [
'invenio-oauthclient[postgresql]>=1.0.0b3',
'invenio-oauthclient[postgresql]>=1.0.0b5',
],
'sqlite': [
'invenio-oauthclient[sqlite]>=1.0.0b3',
'invenio-oauthclient[sqlite]>=1.0.0b5',
],
'tests': tests_require,
}
Expand Down
2 changes: 1 addition & 1 deletion shibboleth_authenticator/views.py
Expand Up @@ -70,7 +70,7 @@ def prepare_flask_request(request):
Prepare flask request.
Args:
request(flask.request): The Flask request.
request(flask.Request): The Flask request.
Returns:
dict: Returns dictionary used in :func:`init_saml_auth`.
Expand Down

0 comments on commit b0a7ea6

Please sign in to comment.