Skip to content

Commit 95124ee

Browse files
authored
Merge pull request #452 from rstudio/rm-docs
2 parents 2e58643 + df89575 commit 95124ee

File tree

18 files changed

+5
-874
lines changed

18 files changed

+5
-874
lines changed

.github/workflows/pytest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
- name: Install dependencies
112112
run: |
113113
python -m pip install --upgrade pip
114-
pip install -e ".[dev,docs,test]"
114+
pip install -e ".[dev,test]"
115115
- name: "Build Package"
116116
run: |
117117
make dist

Makefile

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: help clean clean-test clean-pyc clean-build docs help lint test e2e e2e-examples
1+
.PHONY: help clean clean-test clean-pyc clean-build help lint test e2e e2e-examples
22
.DEFAULT_GOAL := help
33

44
define BROWSER_PYSCRIPT
@@ -94,16 +94,6 @@ coverage: ## check code coverage quickly with the default Python
9494
coverage html
9595
$(BROWSER) htmlcov/index.html
9696

97-
docs: ## generate Sphinx HTML documentation, including API docs
98-
rm -f docs/shiny.rst
99-
rm -f docs/modules.rst
100-
sphinx-apidoc -o docs/ shiny
101-
$(MAKE) -C docs clean
102-
$(MAKE) -C docs html
103-
$(BROWSER) docs/build/html/index.html
104-
105-
servedocs: docs ## compile the docs watching for changes
106-
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
10797

10898
release: dist ## package and upload a release
10999
twine upload dist/*
@@ -122,8 +112,8 @@ install: dist
122112
python3 -m pip install dist/shiny*.whl
123113

124114
install-deps: ## install dependencies
125-
pip install -e ".[dev,docs,test]"
115+
pip install -e ".[dev,test]"
126116

127117
# ## If caching is ever used, we could run:
128118
# install-deps: ## install latest dependencies
129-
# pip install --editable ".[dev,docs,test]" --upgrade --upgrade-strategy eager
119+
# pip install --editable ".[dev,test]" --upgrade --upgrade-strategy eager

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ More detailed installation instructions, including the use of `conda`, are [also
2525
If you want to do development on Shiny for Python:
2626

2727
```sh
28-
pip install -e ".[dev,docs,test]"
28+
pip install -e ".[dev,test]"
2929
```
3030

3131
Additionally, you can install pre-commit hooks which will automatically reformat and lint the code when you make a commit:

docs/Makefile

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/README.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

docs/source/_static/js/disable-keypress.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/source/_static/js/fix-logo-link.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/source/_templates/class.rst

Lines changed: 0 additions & 37 deletions
This file was deleted.

docs/source/_templates/justattributes.rst

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/source/_templates/layout.html

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)