Skip to content

Commit ca6ddb1

Browse files
committed
Remove docs dependencies
1 parent 2e58643 commit ca6ddb1

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
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

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:

setup.cfg

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,6 @@ test =
7070
seaborn
7171
plotnine
7272
plotly
73-
docs =
74-
sphinx>=4.4.0
75-
# Building docs currently fails with 1.16.0 and up, so use 1.15.3 for now.
76-
sphinx-autodoc-typehints==1.15.3
77-
myst-parser>=0.16.1
78-
sphinx-book-theme>=0.2.0
7973
dev =
8074
black>=23.1.0
8175
# Python 3.7 needs a specific version of flake8 to satisfy other dependencies.

0 commit comments

Comments
 (0)