Commit 9f8b6dac authored by Victor Zverovich's avatar Victor Zverovich

Fix wheel installation

parent 6060bcfc
...@@ -12,7 +12,7 @@ jobs: ...@@ -12,7 +12,7 @@ jobs:
- name: Create Build Environment - name: Create Build Environment
run: | run: |
sudo apt install doxygen python3-virtualenv python3-wheel sudo apt install doxygen python3-virtualenv
sudo npm install -g less clean-css sudo npm install -g less clean-css
cmake -E make_directory ${{runner.workspace}}/build cmake -E make_directory ${{runner.workspace}}/build
......
...@@ -24,6 +24,7 @@ def create_build_env(venv_dir='virtualenv'): ...@@ -24,6 +24,7 @@ def create_build_env(venv_dir='virtualenv'):
# Install Sphinx and Breathe. Require the exact version of Sphinx which is # Install Sphinx and Breathe. Require the exact version of Sphinx which is
# compatible with Breathe. # compatible with Breathe.
pip = Pip(venv_dir) pip = Pip(venv_dir)
pip.install('wheel')
pip.install('six') pip.install('six')
pip.install('sphinx-doc/sphinx', 'v3.3.0') pip.install('sphinx-doc/sphinx', 'v3.3.0')
pip.install('michaeljones/breathe', 'v4.23.0') pip.install('michaeljones/breathe', 'v4.23.0')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment