Skip to content

Commit

Permalink
Fix typo in html_static_path in conf.py
Browse files Browse the repository at this point in the history
docs/source/conf.py
- Fix typo in html_static_path, "_static" should be "_static/"

docs/requirements.txt
- Remove pybtex and pybtex-docutils

CHANGELOG.md
- updated accordingly

Signed-off-by: Bob Yantosca <yantosca@seas.harvard.edu>
  • Loading branch information
yantosca committed May 11, 2023
1 parent 913f6a3 commit c65c757
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,17 @@ This file documents all notable changes to the GCHP wrapper repository starting
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
### Added
- Added `.readthedocs.yaml` to configure ReadTheDocs builds

### Changed
- Updated `AUTHORS.txt` for GCHP 14.2.0
- Updated `README.md` so that links point to http://geos-chem.org
- Updated logo & badge links in `README.md`

### Fixed
- Typo in `docs/source/conf.py`, "_static" should be "_static/"

## [14.1.1] - 2023-03-03
### Added
- Added `EXE_FILE_NAME` and `INSTALLCOPY` to src/CMakeLists.txt (facilitates integration testing)
Expand Down
8 changes: 0 additions & 8 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,3 @@ sphinxcontrib-bibtex==2.2.0
recommonmark
docutils==0.16
jinja2==3.0.3
#
# The updates below are needed along with the ~/.readthedocs.yaml file
# in order to prevent builds from failing due to package version
# incompatibilities. Please see this Github issue for more information:
# https://github.com/readthedocs/readthedocs.org/issues/10290
#
#pybtex==0.24.0
#pybtex-docutils==1.0.2
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def format_web_refs(self, e):
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = [
'_static',
'_static/',
'geos-chem-shared-docs/_static/',
]

Expand Down

0 comments on commit c65c757

Please sign in to comment.