Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
VanyaBelyaev committed Aug 29, 2024
1 parent 6b4ebd6 commit b8c9321
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 @@ -185,7 +185,7 @@ if ( ${PYTHON_VERSION} VERSION_GREATER_EQUAL "3.6" )
if ( ${PYTHON_VERSION} VERSION_LESS "3.7" )
find_python_module ( berkeleydb QUIET )
if ( NOT ${PY_berkeleydb_FOUND} )
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install -Iv "berkeleydb==18.1.4" ${PIP_ARGS})
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install "berkeleydb==18.1.4" ${PIP_ARGS})
endif()
endif()
endif()
Expand All @@ -194,7 +194,7 @@ if ( ${PYTHON_VERSION} VERSION_GREATER_EQUAL "3.7" )
if ( ${PYTHON_VERSION} VERSION_LESS "3.8" )
find_python_module ( berkeleydb QUIET )
if ( NOT ${PY_berkeleydb_FOUND} )
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install -Iv "berkeleydb==18.1.6" ${PIP_ARGS})
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install "berkeleydb==18.1.6" ${PIP_ARGS})
endif()
endif()
endif()
Expand Down

0 comments on commit b8c9321

Please sign in to comment.