File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -141,15 +141,16 @@ CLI_ARGS=$1
141
141
# Defaults. Change these variables to customize this script
142
142
# ###############################
143
143
144
- EXTRAS= " packages"
145
-
144
+ BASE= " .[ packages] "
145
+ BASE_DEV= " .[packages,testing] "
146
146
if [[ $OSTYPE == ' darwin' * ]]; then
147
- EXTRAS=" "
147
+ BASE=" ."
148
+ BASE_DEV=" .[testing]"
148
149
fi
149
150
150
151
# Requirement arguments passed to pip and used by default or with --dev.
151
- REQUIREMENTS=" --editable .[ $EXTRAS ] --constraint requirements.txt --constraint requirements-linux.txt"
152
- DEV_REQUIREMENTS=" --editable .[ $EXTRAS ,testing] --constraint requirements.txt --constraint requirements-linux.txt --constraint requirements-dev.txt"
152
+ REQUIREMENTS=" --editable $BASE --constraint requirements.txt --constraint requirements-linux.txt"
153
+ DEV_REQUIREMENTS=" --editable $BASE_DEV --constraint requirements.txt --constraint requirements-linux.txt --constraint requirements-dev.txt"
153
154
DOCS_REQUIREMENTS=" --editable .[docs] --constraint requirements.txt"
154
155
155
156
# where we create a virtualenv
You can’t perform that action at this time.
0 commit comments