-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
|
||
# Use pynetcio machine | ||
|
||
# Run the following command to update docs: `pdoc3 --html --output-dir docs netmiko` | ||
# Run the following command to update docs: | ||
$ pdoc3 --html --output-dir docs netmiko --force | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ktbyers
Author
Owner
|
||
|
||
# Docs will be hosted via GitHub Pages in the master branch... | ||
# README.md is entry point at https://ktbyers.github.io/netmiko/ which then links to... | ||
# https://ktbyers.github.io/netmiko/docs/netmiko/index.html for full docs | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
pytest==3.10.0 | ||
pylama==7.6.6 | ||
tox==3.5.3 | ||
twine==1.12.1 | ||
pysnmp | ||
pytest==4.6.3 | ||
pylama==7.7.1 | ||
tox==3.13.1 | ||
twine==1.13.0 | ||
pysnmp==4.4.9 | ||
pdoc3==0.6.2; python_version >= '3.6' | ||
-r requirements.txt |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py27,py35,py36 | ||
envlist = py27,py35,py36,py37 | ||
|
||
[testenv] | ||
deps = | ||
|
pdoc creates an additional 'namespace' directory for each documented module. Thus, the resulting directory hosting HTML files is ./docs/netmiko (whereas GitHub expects HTMLs in ./docs/ directly), and this is why the API reference URL doesn't work.
See also pdoc3/pdoc#55.