We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac2b2f9 commit 2fc0ea1Copy full SHA for 2fc0ea1
1 file changed
easybuild/easyblocks/p/python.py
@@ -186,7 +186,9 @@ def run_pip_check(python_cmd=None, unversioned_packages=None):
186
187
if python_cmd is None:
188
python_cmd = 'python'
189
- if unversioned_packages is None:
+ if build_option('ignore_pip_unversioned_pkgs'):
190
+ unversioned_packages = list(set(build_option('ignore_pip_unversioned_pkgs') + unversioned_packages))
191
+ elif unversioned_packages is None:
192
unversioned_packages = []
193
194
pip_check_cmd = f"{python_cmd} -m pip check"
0 commit comments