From f26608866b07dfcde1f9c1a063d9f12eda3e05df Mon Sep 17 00:00:00 2001 From: Brandon Nielsen Date: Jun 28 2022 19:54:15 +0000 Subject: Add openidc-client as install_requires. Fixes "ImportError: python-openidc-client is needed for OIDC" error when calling site.login(). --- diff --git a/setup.py b/setup.py index fecc0ae..f966000 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,9 @@ setup( url = "https://pagure.io/fedora-qa/relval", packages = ["relval"], include_package_data = True, - install_requires = ['wikitcms>=2.6.0', 'setuptools', 'markupsafe', 'six', - 'fedfind>=2.8.0', 'mwclient', 'python-bugzilla'], + install_requires = ['wikitcms>=2.6.0', 'setuptools', 'markupsafe', + 'openidc-client', 'six', 'fedfind>=2.8.0', 'mwclient', + 'python-bugzilla'], long_description=read('README.md'), classifiers=[ "Development Status :: 3 - Alpha",