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

Test 🐐 counter #410

Merged
merged 7 commits into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ build:
os: ubuntu-22.04
tools:
python: "3.11"
jobs:
post_checkout:
- git submodule update --init

sphinx:
builder: html
Expand Down
10 changes: 10 additions & 0 deletions _static/sunpy_org.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,13 @@
text-decoration-line: none;
border-color: var(--sst-dark-color);
}

/* We don't need the flyout on sunpy.org */
#rtd-footer-container {
display: none;
}

/* TODO: Revert this as it's rude */
#ethical-ad-placement {
display: none;
}
Cadair marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 4 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@
html_title = "sunpy.org"
html_static_path = ["_static"]
html_extra_path = ["_static/img"]
html_theme_options = {"show_prev_next": False, "sst_is_root": True}
html_theme_options = {
"show_prev_next": False,
"sst_is_root": True,
}

html_css_files = [
"sunpy_org.css",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RC versions are needed as netfily does not support modern python
ablog>=0.11.0rc1
sunpy-sphinx-theme>=2.0.0rc1
sunpy-sphinx-theme>=2.0.8rc1
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

before we merge this we should remove the rc as having it here means it will install any rc which probably isn't what we want in normal operation.

Cadair marked this conversation as resolved.
Show resolved Hide resolved
ipykernel
ipython
jupyter_client
Expand Down
Loading