Skip to content

Commit

Permalink
Fix Shinx Airflow Theme to work for Sphinx 7
Browse files Browse the repository at this point in the history
Still the theme/CSS is pretty bad but at least it can build on
CI with those changes.
  • Loading branch information
potiuk committed Aug 6, 2023
1 parent 1310c6b commit 9457c37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sphinx_airflow_theme/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
]
},
install_requires=[
'sphinx>=1.8'
'sphinx>=7.0.0'
],
tests_require=[],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion sphinx_airflow_theme/sphinx_airflow_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from os import path
from sphinx.application import Sphinx

__version__ = '0.0.12'
__version__ = '0.1.1rc1'
__version_full__ = __version__


Expand Down
2 changes: 1 addition & 1 deletion sphinx_airflow_theme/sphinx_airflow_theme/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
{%- endmacro %}

{%- macro css() %}
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
<link rel="stylesheet" href="{{ pathto('_static/', 1) }}" type="text/css" />

{%- for css in css_files %}
{%- if css|attr("filename") %}
Expand Down

0 comments on commit 9457c37

Please sign in to comment.