Skip to content

Commit

Permalink
hopefully last attempt to fix logo
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelweinold committed Mar 3, 2023
1 parent bcfd9c2 commit 1f1aaec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion setup/conda_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
# sphinx
- sphinx=5.3.0 # sphinx-design currently requires sphinx[version>=2,<5]
- nbsphinx # Jupyter notebook support
- pydata-sphinx-theme # website theme
- pydata-sphinx-theme=0.13.0 # website theme
- myst-parser # Markdown support
- myst-nb # Jupyter notebook support
- sphinx-autobuild # live-html support
Expand Down
2 changes: 1 addition & 1 deletion setup/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ipython
pydata-sphinx-theme
pydata-sphinx-theme==0.13.0
myst-parser
myst-nb
sphinx-autoapi
Expand Down
9 changes: 4 additions & 5 deletions sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
]

templates_path = ['source/_templates']
html_static_path = ["source/_static"]
exclude_patterns = ['_build']
html_theme = "pydata_sphinx_theme"

Expand Down Expand Up @@ -191,19 +190,19 @@
}
],
"logo": {
"image_light": "logo/BW_all_black_transparent_landscape.svg",
"image_dark": "logo/BW_all_white_transparent_landscape.svg"
"image_light": "source/_static/logo/BW_all_black_transparent_landscape.svg",
"image_dark": "source/_static/logo/BW_all_white_transparent_landscape.svg"
},
"favicons": [
{
"rel": "icon",
"sizes": "100x100",
"href": "logo/BW_favicon_100x100.png",
"href": "source/_static/logo/BW_favicon_100x100.png",
},
{
"rel": "apple-touch-icon",
"sizes": "500x500",
"href": "logo/BW_favicon_500x500.png"
"href": "source/_static/logo/BW_favicon_500x500.png"
},
]
}
Expand Down

0 comments on commit 1f1aaec

Please sign in to comment.