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: errors due to make html #4365

Merged
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ The rules for this file:
* 2.7.0

Fixes
* Fix documentation building errors due to `html_static_path` and unindented
block of code (Issue #4362, PR #4365)
* Updated cimport for numpy to maintain cimport consistency (Issue #3908)
* Fix `NoJump` unwrapping for jumps on the second frame in a
trajectory (PR #4258, Issue #4257)
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/coordinates/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ def timeseries(self, asel: Optional['AtomGroup']=None,
of coordinate data is returned.

.. deprecated:: 2.7.0
asel argument will be renamed to atomgroup in 3.0.0
asel argument will be renamed to atomgroup in 3.0.0

atomgroup: AtomGroup (optional)
Same as `asel`, will replace `asel` in 3.0.0
Expand Down
2 changes: 1 addition & 1 deletion package/doc/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class KeyStyle(UnsrtStyle):
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
# For RTD theme: custom.css to override theme defaults.
html_static_path = ['_static']
html_static_path = []

# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
Expand Down
Loading