Skip to content

Commit

Permalink
fix lxml (5)
Browse files Browse the repository at this point in the history
  • Loading branch information
arBmind committed Oct 23, 2021
1 parent 9d0a9d9 commit d7a126b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
QT_VERSION: 5.15.2
CLANG_VERSION: 120
ELFUTILS_VERSION: 0.175
CMAKE_VERSION: 3.20.2
CMAKE_VERSION: 3.21.3
NINJA_VERSION: 1.10.2
BUILD_TYPE: Release
CCACHE_VERSION: 4.2.1
Expand Down Expand Up @@ -384,10 +384,13 @@ jobs:
message(FATAL_ERROR "Failed to install dependencies")
endif()
endif()
find_package(Python3 REQUIRED COMPONENTS Interpreter)
find_package(Python3 3.5...<3.10 REQUIRED COMPONENTS Interpreter)
# hack to replace 32-bit python found by this script with 64-bit one
# required for linking qtcreatorcdbext
string(REPLACE "x86" "x64" Python3_EXECUTABLE "${Python3_EXECUTABLE}")
execute_process(
COMMAND ${Python3_EXECUTABLE} -m pip install --upgrade pip
)
execute_process(
COMMAND ${Python3_EXECUTABLE} -m pip install --user beautifulsoup4 lxml
RESULT_VARIABLE result
Expand Down

0 comments on commit d7a126b

Please sign in to comment.