File tree Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ CLI_ARGS=$1
30
30
# Requirement arguments passed to pip and used by default or with --dev.
31
31
REQUIREMENTS=" --editable . --constraint requirements.txt"
32
32
DEV_REQUIREMENTS=" --editable .[testing] --constraint requirements.txt --constraint requirements-dev.txt"
33
- DOCS_REQUIREMENTS=" --editable .[docs] --constraint requirements.txt"
34
33
35
34
# where we create a virtualenv
36
35
VIRTUALENV_DIR=venv
@@ -185,7 +184,6 @@ while getopts :-: optchar; do
185
184
help ) cli_help;;
186
185
clean ) find_python && clean;;
187
186
dev ) CFG_REQUIREMENTS=" $DEV_REQUIREMENTS " ;;
188
- docs ) CFG_REQUIREMENTS=" $DOCS_REQUIREMENTS " ;;
189
187
esac ;;
190
188
esac
191
189
done
Original file line number Diff line number Diff line change 28
28
@ rem # Requirement arguments passed to pip and used by default or with --dev.
29
29
set " REQUIREMENTS = --editable . --constraint requirements.txt"
30
30
set " DEV_REQUIREMENTS = --editable .[testing] --constraint requirements.txt --constraint requirements-dev.txt"
31
- set " DOCS_REQUIREMENTS = --editable .[docs] --constraint requirements.txt"
32
31
33
32
@ rem # where we create a virtualenv
34
33
set " VIRTUALENV_DIR = venv"
@@ -76,9 +75,6 @@ if not "%1" == "" (
76
75
if " %1 " EQU " --dev" (
77
76
set " CFG_REQUIREMENTS = %DEV_REQUIREMENTS% "
78
77
)
79
- if " %1 " EQU " --docs" (
80
- set " CFG_REQUIREMENTS = %DOCS_REQUIREMENTS% "
81
- )
82
78
shift
83
79
goto again
84
80
)
Original file line number Diff line number Diff line change @@ -55,13 +55,10 @@ testing =
55
55
pycodestyle >= 2.8.0
56
56
twine
57
57
ruff
58
-
59
- docs =
60
58
Sphinx>=5.0.2
61
59
sphinx-rtd-theme>=1.0.0
62
60
sphinx-reredirects >= 0.1.2
63
61
doc8>=0.11.2
64
62
sphinx-autobuild
65
63
sphinx-rtd-dark-mode>=1.3.0
66
64
sphinx-copybutton
67
-
You can’t perform that action at this time.
0 commit comments