-
Notifications
You must be signed in to change notification settings - Fork 207
Update css file names, fix documentation #857
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
Conversation
this can be found in `PR #845 | ||
<https://github.com/sphinx-gallery/sphinx-gallery/pull/845>`_. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was not 100% about adding reference to the issue here, happy to change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's fine to have these in the doc
Got this error in circle Ci, update libraries:
copied solution from here: https://stackoverflow.com/questions/68802802/repository-http-security-debian-org-debian-security-buster-updates-inrelease
|
ping @larsoner this is ready for review. |
.circleci/config.yml
Outdated
@@ -9,7 +9,7 @@ jobs: | |||
- run: | |||
name: Update libraries | |||
command: | | |||
sudo apt-get update | |||
sudo apt-get --allow-releaseinfo-change update |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed this elsewhere recently by changing to sudo apt
I think, but this is also fine
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated to sudo apt.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM but let's wait a couple of days in case @mgeier has comments
_KNOWN_CSS = ('gallery', 'gallery-binder', 'gallery-dataframe', | ||
'gallery-rendered-html') | ||
_KNOWN_CSS = ('sg_gallery', 'sg_gallery-binder', 'sg_gallery-dataframe', | ||
'sg_gallery-rendered-html') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @larsoner for thinking about this!
The change works perfectly fine with nbsphinx
, since the load_style
sub-module has been correctly updated.
The actual file name doesn't matter for my use case.
this can be found in `PR #845 | ||
<https://github.com/sphinx-gallery/sphinx-gallery/pull/845>`_. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's fine to have these in the doc
Follows from #845
Prepends 'sg_' to all our css file names.
Fixes a circle ci error.