File tree Expand file tree Collapse file tree 3 files changed +1
-9
lines changed Expand file tree Collapse file tree 3 files changed +1
-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 @@ -69,6 +69,7 @@ install_requires =
69
69
toml >= 0.10.0
70
70
mock >= 3.0.5
71
71
packvers >= 21.5
72
+
72
73
[options.packages.find]
73
74
where = src
74
75
@@ -85,13 +86,10 @@ testing =
85
86
twine
86
87
ruff
87
88
pytest-rerunfailures
88
-
89
- docs =
90
89
Sphinx>=5.0.2
91
90
sphinx-rtd-theme>=1.0.0
92
91
sphinx-reredirects >= 0.1.2
93
92
doc8>=0.11.2
94
93
sphinx-autobuild
95
94
sphinx-rtd-dark-mode>=1.3.0
96
95
sphinx-copybutton
97
-
You can’t perform that action at this time.
0 commit comments