From 0936f7e274d09c37807a16b1c23a70f08fec151b Mon Sep 17 00:00:00 2001 From: mb Date: Mon, 6 Jul 2020 16:02:31 +0200 Subject: [PATCH 1/3] invenio-shibboleth module is added to install_requires --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f5991b4..26ea6b3 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ history = open('CHANGES.rst').read() tests_require = [ 'check-manifest>=0.25', 'coverage>=4.0', - 'isort>=4.3.3', + 'isort>=4.3.3, <5.0.0', 'pydocstyle>=2.0.0', 'pytest-cov>=2.5.1', 'pytest-pep8>=1.0.6', @@ -56,7 +56,7 @@ install_requires = [ # todo # change to the release # this branch will install flask-sso-saml@behind-loadbalancer - 'invenio-saml @ git+https://github.com/mb-wali/invenio-saml@tugraz', + 'invenio-shibboleth>=0.0.1', ] From 0f469431208f938820651c33ac131cf0a818ae57 Mon Sep 17 00:00:00 2001 From: mb Date: Mon, 6 Jul 2020 16:05:17 +0200 Subject: [PATCH 2/3] config.py import changed from invenio-shibboleth --- invenio_config_tugraz/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invenio_config_tugraz/config.py b/invenio_config_tugraz/config.py index af3ec33..4e2466a 100644 --- a/invenio_config_tugraz/config.py +++ b/invenio_config_tugraz/config.py @@ -9,7 +9,7 @@ """invenio module that adds tugraz configs.""" from flask_babelex import gettext as _ -from invenio_saml.handlers import acs_handler_factory +from invenio_shibboleth.handlers import acs_handler_factory """invenio-saml import""" From f0454a09cb749380788867f3304f51b62f312989 Mon Sep 17 00:00:00 2001 From: mb Date: Tue, 7 Jul 2020 08:35:54 +0200 Subject: [PATCH 3/3] update keywords This closes #12 --- CONTRIBUTING.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 5 +---- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 2303fef..8db6b8d 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -10,7 +10,7 @@ Types of Contributions Report Bugs ~~~~~~~~~~~ -Report bugs at https://github.com/https://github.com/https://github.com/mb-/issues. +Report bugs at https://github.com/mb-wali/invenio-config-tugraz/issues. If you are reporting a bug, please include: @@ -41,7 +41,7 @@ Submit Feedback ~~~~~~~~~~~~~~~ The best way to send feedback is to file an issue at -https://github.com/https://github.com/https://github.com/mb-/issues. +https://github.com/mb-wali/invenio-config-tugraz/issues. If you are proposing a feature: diff --git a/docs/conf.py b/docs/conf.py index b972849..9d7826c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -123,7 +123,7 @@ html_theme_options = { 'github_banner': True, 'show_powered_by': False, 'extra_nav_links': { - 'invenio-config-tugraz@GitHub': 'https://github.com/https://github.com/https://github.com/mb-', + 'invenio-config-tugraz@GitHub': 'https://github.com/mb-wali/invenio-config-tugraz', 'invenio-config-tugraz@PyPI': 'https://pypi.python.org/pypi/invenio-config-tugraz/', } } diff --git a/setup.py b/setup.py index 26ea6b3..d4c02ea 100644 --- a/setup.py +++ b/setup.py @@ -53,9 +53,6 @@ setup_requires = [ install_requires = [ 'Flask-BabelEx>=0.9.4', 'invenio_oauthclient>=1.2.1', - # todo - # change to the release - # this branch will install flask-sso-saml@behind-loadbalancer 'invenio-shibboleth>=0.0.1', ] @@ -74,7 +71,7 @@ setup( version=version, description=__doc__, long_description=readme + '\n\n' + history, - keywords='invenio TODO', + keywords='invenio, config, Tu Graz', license='MIT', author='Mojib Wali', author_email='mojib.wali@tugraz.at',