You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where PYTHON_CHECK_MODULE comes from UHDPython.cmake which isn't installed with UHD, but comes from UHD.
In some test files (python_api_test.py and uhd_test_base.py), UHD does the following:
try:
from ruamel import yaml
except:
import yaml
Is the ruamel.yaml Python module really required, or is it just nice to have? Can the try/except import work for this dependency? If not, should UHDPython.cmake be installed by UHD, or should the macro just come over to this repository?
The text was updated successfully, but these errors were encountered:
CMake doesn't check if the
ruamel.yaml
Python module is installed. UHD checks for it in the following way:Where
PYTHON_CHECK_MODULE
comes fromUHDPython.cmake
which isn't installed with UHD, but comes from UHD.In some test files (
python_api_test.py
anduhd_test_base.py
), UHD does the following:Is the ruamel.yaml Python module really required, or is it just nice to have? Can the
try/except
import work for this dependency? If not, shouldUHDPython.cmake
be installed by UHD, or should the macro just come over to this repository?The text was updated successfully, but these errors were encountered: