forked from jupyterhub/binderhub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cedaa7
commit 4deaf8d
Showing
2 changed files
with
25 additions
and
9 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
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 |
---|---|---|
@@ -1,7 +1,24 @@ | ||
name: binderhub | ||
type: sphinx | ||
build: | ||
image: latest | ||
requirements_file: doc/doc-requirements.txt | ||
# Configuration on how ReadTheDocs (RTD) builds our documentation | ||
# ref: https://docs.readthedocs.io/en/stable/config-file/v2.html | ||
|
||
# Required (RTD configuration version) | ||
version: 2 | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: doc/conf.py | ||
|
||
# Optionally build your docs in additional formats such as PDF and ePub | ||
formats: [] | ||
|
||
# Optionally set the version of Python and requirements required to build your docs | ||
python: | ||
version: 3 | ||
version: 3.7 | ||
install: | ||
# WARNING: This requirements file will be installed without the pip | ||
# --upgrade flag in an existing environment. This means that if a | ||
# package is specified without a lower boundary, we may end up | ||
# accepting the existing version. | ||
# | ||
# ref: https://github.com/readthedocs/readthedocs.org/blob/0e3df509e7810e46603be47d268273c596e68455/readthedocs/doc_builder/python_environments.py#L335-L344 | ||
- requirements: doc/doc-requirements.txt |