Alexander Grund
Alexander Grund
(created using `eb --new-pr`) This implements the workflow to install the compatibility libraries from the driver run file: https://docs.nvidia.com/deploy/cuda-compatibility/index.html#manually-installing-from-runfile ECs using this new EasyBlock: https://github.com/easybuilders/easybuild-easyconfigs/pull/15892 Note that the driver version...
(created using `eb --new-pr`)
(created using `eb --new-pr`)
E.g. EB_scipy uses FortranPythonPackage which ignores `use_pip` and always builds with setup.py It then uses pip to build the package again (this time without the Fortran settings) and installs that....
In e.g. `Python-3.7.4-GCCcore-8.3.0.eb` we install pip without pip which leads to the installation of an egg-file/folder. This doesn't play nice with `pip` in general. E.g. `pip list` lists pip as...
Similar to #2238 but for SciPy Supersedes #1744 Note: With SciPy-bundle-2019.03-foss-2019a.eb I get a failure due to a precision issue -.- Same with the 2019b Those are very small failures,...
The numpy EasyBlock runs the unittests as `"cd .. && %(python)s -c 'import numpy; numpy.test(verbose=2)'"` However the `numpy.test` function returns True/False depending on success. As that is never checked the...
@JensTimmerman You introduced this change: https://github.com/easybuilders/easybuild-easyblocks/commit/de16713b1a744354e2022000c84a9f08ba3665aa#diff-ae44a1c5fa077d44e8ada75a8cabd117R47 What was the reasoning in building in debug mode (aka -O0 etc)? The comment "run cmake in debug mode" makes me think you want...
Support for running `pip check` at the end of the installation of a Python Package was recently added after a serious issue was detected in TensorFlow where mismatching dependencies led...
We tend to set ``` download_dep_fail = True use_pip = True sanity_pip_check = True ``` for all PythonPackage ECs nowadays and pip should be the default to install PythonPackages as...