-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge 14.2.0 into dev/14.2.1 for the GEOS-Chem 14.2.0 release
This merge brings GEOS-Chem 14.2.0 "main" branch into the dev/14.2.1 branch in anticipation of the 14.2.1 release. Signed-off-by: Bob Yantosca <[email protected]>
- Loading branch information
Showing
76 changed files
with
2,180 additions
and
617 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
# | ||
# NOTE: This is now needed in order to prevent builds from failing due | ||
# to Python package issues at the ReadTheDocs site. For more info, see: | ||
# https://github.com/readthedocs/readthedocs.org/issues/10290 | ||
# -- Bob Yantosca (10 May 2023) | ||
|
||
# Required | ||
version: 2 | ||
|
||
## Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.7" | ||
nodejs: "14" | ||
rust: "1.55" | ||
golang: "1.17" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
builder: html | ||
configuration: docs/source/conf.py | ||
|
||
# If using Sphinx, optionally build your docs in additional formats such as PDF | ||
formats: all | ||
|
||
# Optionally declare the Python requirements required to build your docs | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt | ||
|
||
# Tell RTD to clone all submodules | ||
submodules: | ||
include: all | ||
recursive: true |
Oops, something went wrong.