Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): change path to logo for deployment #1221

Merged
merged 15 commits into from
Nov 22, 2024
Merged
3 changes: 3 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ build:
apt_packages:
- graphviz
jobs:
post_checkout:
- 'sed s/docs\\\/source\\\/// -i.bak README.rst'
- diff README.rst.bak README.rst || true
post_install:
- python -m pip install '.[dev]' rucio-clients
pre_build:
Expand Down
2 changes: 2 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
html: source/modules
cd .. && sed -i.bak s/docs\\\/source\\\/// README.rst && cd docs
sphinx-build -M html source build
cd .. && mv README.rst.bak README.rst && cd docs

source/modules: source/reference.rst
sphinx-autogen source/reference.rst -t source/_templates -o source/modules
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
release = coffea.__version__
githash = subprocess.check_output(["git", "rev-parse", "HEAD"]).strip().decode("ascii")

language = None
language = "en"

# -- General configuration ---------------------------------------------------

Expand Down
Loading