Skip to content

Commit c30c80e

Browse files
author
Alexander Batashev
authored
[CI] Download fixed versions of Python tools (#1485)
Download particular versions of Sphinx and plugins instead of using the latest available versions on the repository. Signed-off-by: Alexander Batashev <alexander.batashev@intel.com>
1 parent 24471bc commit c30c80e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/gh_pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install deps
1616
run: |
1717
sudo apt-get install -y doxygen graphviz ssh ninja-build
18-
sudo pip3 install sphinx recommonmark sphinx_markdown_tables
18+
sudo pip3 install 'sphinx==3.0.0' 'recommonmark==0.6.0' 'sphinx_markdown_tables==0.0.12'
1919
- name: Build Docs
2020
run: |
2121
mkdir -p $GITHUB_WORKSPACE/build

sycl/doc/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3333
# ones.
3434
extensions = [
35+
'recommonmark',
3536
'sphinx_markdown_tables'
3637
]
3738

0 commit comments

Comments
 (0)