Skip to content

Commit c0b9aeb

Browse files
committed
Use new extra require for [full] installation
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 4525fb7 commit c0b9aeb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Version 21.1.21
88
---------------
99

1010
*2021-01-21*
11+
- Add new [full] extra requires that install all the dependencies
1112
- Fix bug related to commoncode libraries loading
1213
- improve the extra requirements
1314
- set minimum version for dependencies

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function setup {
3535

3636
setup
3737

38-
$CONFIGURE_ROOT_DIR/tmp/bin/pip install -e .[testing]
38+
$CONFIGURE_ROOT_DIR/tmp/bin/pip install -e .[full] -e .[testing]
3939

4040
if [ -f "$CONFIGURE_ROOT_DIR/tmp/bin/activate" ]; then
4141
source "$CONFIGURE_ROOT_DIR/tmp/bin/activate"

configure.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ call mkdir "%CFG_ROOT_DIR%tmp"
8989
call curl -o "%CFG_ROOT_DIR%tmp\virtualenv.pyz" https://bootstrap.pypa.io/virtualenv.pyz
9090
call %PYTHON_EXECUTABLE% "%CFG_ROOT_DIR%tmp\virtualenv.pyz" "%CFG_ROOT_DIR%tmp"
9191
call "%CFG_ROOT_DIR%tmp\Scripts\activate"
92-
call "%CFG_ROOT_DIR%tmp\Scripts\pip" install --upgrade pip virtualenv setuptools wheel
93-
call "%CFG_ROOT_DIR%tmp\Scripts\pip" install -e .[testing]
92+
call "%CFG_ROOT_DIR%tmp\Scripts\pip" install -e .[full] -e .[testing]
9493

9594
@rem Return a proper return code on failure
9695
if %ERRORLEVEL% neq 0 (

0 commit comments

Comments
 (0)