Bump up docker Pypi module version

Also updated docs generation code caused by
deprecated properties in recent version of Sphinx.

Change-Id: Ic5ddf021e62be9748097bd5cc72ffc159f95db12
This commit is contained in:
Sergiy Markin 2024-10-08 15:21:18 +00:00
parent 725c7eb546
commit ff1c9ff4b1
3 changed files with 4 additions and 7 deletions

View File

@ -1,7 +1,7 @@
# The order of packages is significant, because pip processes them in the order # The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration # of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later. # process, which may cause wedges in the gate later.
docutils<=0.17 docutils
plantuml plantuml
reno reno
sphinx-rtd-theme sphinx-rtd-theme

View File

@ -97,12 +97,11 @@ todo_include_todos = False
# The theme to use for HTML and HTML Help pages. See the documentation for # The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes. # a list of builtin themes.
# #
import sphinx_rtd_theme # import sphinx_rtd_theme
html_logo = '_static/airship.logo.white.svg' html_logo = '_static/airship.logo.white.svg'
html_theme = "sphinx_rtd_theme" html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_theme_options = { html_theme_options = {
'display_version': False,
'logo_only': True 'logo_only': True
} }

View File

@ -52,7 +52,6 @@
block: block:
- pip: - pip:
name: docker name: docker
version: 4.4.4
executable: pip3 executable: pip3
become: True become: True
@ -60,7 +59,6 @@
block: block:
- pip: - pip:
name: tox name: tox
version: 3.28.0
executable: pip3 executable: pip3
become: True become: True
@ -69,7 +67,7 @@
when: not publish when: not publish
shell: | shell: |
set -ex set -ex
sudo -E -H pip3 install tox==3.28.0 sudo -E -H pip3 install tox
make run_images make run_images
args: args:
chdir: "{{ zuul.project.src_dir }}" chdir: "{{ zuul.project.src_dir }}"