diff options
author | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-28 09:29:56 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-28 13:44:25 -0500 |
commit | ccb9f60fe5831048fc9bdb04069691d5d02015a1 (patch) | |
tree | bc88bd6d576d0563d8385ea14f9ffeabe5e70b77 /host/cmake/Modules/UHDPython.cmake | |
parent | f3d3b071fd193bf8685c86e74f32b7b96b5e3be2 (diff) | |
download | uhd-ccb9f60fe5831048fc9bdb04069691d5d02015a1.tar.gz uhd-ccb9f60fe5831048fc9bdb04069691d5d02015a1.tar.bz2 uhd-ccb9f60fe5831048fc9bdb04069691d5d02015a1.zip |
uhd: Update minimum version of dependencies
The minimum version of the following dependencies have been updated for
UHD 4.1:
* GCC: 5.4.0 --> 6.3.0
* Clang: 3.8.0 --> 6.0.0
* Apple Clang: 600 --> 800
* Python: 3.5 --> 3.6
* Boost: 1.58 --> 1.65
Diffstat (limited to 'host/cmake/Modules/UHDPython.cmake')
-rw-r--r-- | host/cmake/Modules/UHDPython.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/cmake/Modules/UHDPython.cmake b/host/cmake/Modules/UHDPython.cmake index 453b7678c..935a6a819 100644 --- a/host/cmake/Modules/UHDPython.cmake +++ b/host/cmake/Modules/UHDPython.cmake @@ -46,7 +46,7 @@ endif(NOT PYTHONINTERP_FOUND) # If that fails, try using the build-in find program routine. if(NOT PYTHONINTERP_FOUND) message(STATUS "Attempting to find Python without CMake...") - find_program(PYTHON_EXECUTABLE NAMES python3 python3.5 python3.6 python3.7 python3.8) + find_program(PYTHON_EXECUTABLE NAMES python3 python3.6 python3.7 python3.8 python3.9) if(PYTHON_EXECUTABLE) set(PYTHONINTERP_FOUND TRUE) endif(PYTHON_EXECUTABLE) |