Merge pull request #130 from yuvipanda/doc-it-fix

Switch back to a venv for docs + fix .circle config
This commit is contained in:
Yuvi Panda
2018-08-12 09:27:02 -07:00
committed by GitHub
4 changed files with 9 additions and 12 deletions

View File

@@ -104,7 +104,7 @@ jobs:
name: install dependencies
command: |
pip install sphinx
pip install -r docs/doc-requirements.txt
pip install -r docs/requirements.txt
- save_cache:
paths:

View File

@@ -1,4 +1,5 @@
# Support markdown too
import os
source_suffix = ['.rst']
project = 'The Littlest JupyterHub'
@@ -38,6 +39,9 @@ html_theme = 'alabaster'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
# Do this only if _static exists, otherwise this will error
here = os.path.dirname(os.path.abspath(__file__))
if os.path.exists(os.path.join(here, '_static')):
html_static_path = ['_static']
# Configure the sidebar to be how we want it to be

View File

@@ -1,9 +0,0 @@
name: tljh
channels:
- conda-forge
dependencies:
- python=3.6
- traitlets>=4.1
- sphinx>=1.4, !=1.5.4
- pip:
- sphinx_copybutton

2
docs/requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
sphinx>=1.4, !=1.5.4
sphinx_copybutton