Skip to content

Commit

Permalink
fix CMAKE line
Browse files Browse the repository at this point in the history
  • Loading branch information
VanyaBelyaev committed Jul 20, 2024
1 parent d441832 commit bca8ed8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ostap/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,14 @@ if ( ${PYTHON_VERSION} VERSION_GREATER_EQUAL "3.3" )
if ( ${PYTHON_VERSION} VERSION_LESS_EQUAL "3.6" )
find_python_module ( berkeleydb QUIET )
if ( NOT ${PY_berkeleydb_FOUND} )
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install berkeleydb=18.1.4 ${PIP_ARGS})
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install 'berkeleydb=18.1.4' ${PIP_ARGS})
endif()
endif()

if ( ${PYTHON_VERSION} VERSION_LESS_EQUAL "3.7" )
find_python_module ( berkeleydb QUIET )
if ( NOT ${PY_berkeleydb_FOUND} )
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install berkeleydb=18.1.6 ${PIP_ARGS})
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install 'berkeleydb=18.1.6' ${PIP_ARGS})
endif()
endif()

Expand Down

0 comments on commit bca8ed8

Please sign in to comment.