Compare commits
7 Commits
Author | SHA1 | Date |
---|---|---|
JulioV | 6a7c1cf785 | |
JulioV | b48917c7c1 | |
JulioV | ae2ed12aae | |
JulioV | 298c6c4dfc | |
JulioV | fbbacaa16c | |
JulioV | a9f6fb6fb0 | |
JulioV | 683d3abe24 |
|
@ -0,0 +1,7 @@
|
|||
version: 2
|
||||
|
||||
python:
|
||||
version: 3.7
|
||||
install:
|
||||
- requirements: docs/requirements.txt
|
||||
|
10
docs/conf.py
10
docs/conf.py
|
@ -26,7 +26,13 @@ import sys
|
|||
|
||||
# Add any Sphinx extension module names here, as strings. They can be extensions
|
||||
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
||||
extensions = []
|
||||
|
||||
versionwarning_messages = {
|
||||
'latest': 'These are the old docs for RAPIDS beta. Go to <a href="http://www.rapids.science">www.rapids.science</a> for the latest',
|
||||
}
|
||||
versionwarning_banner_title = 'Deprecated Version'
|
||||
versionwarning_body_selector = 'div[itemprop="articleBody"]'
|
||||
extensions = ['versionwarning.extension']
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
templates_path = ['_templates']
|
||||
|
@ -120,7 +126,7 @@ html_theme = 'sphinx_rtd_theme'
|
|||
# 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".
|
||||
html_static_path = ['_static']
|
||||
# html_static_path = ['_static']
|
||||
|
||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
||||
# using the given strftime format.
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
sphinx-version-warning==1.1.2
|
Loading…
Reference in New Issue