File tree 3 files changed +4
-3
lines changed
integrations/docker/images/base/chip-build
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ RUN set -x \
59
59
libdmalloc-dev \
60
60
libgif-dev \
61
61
libgirepository-1.0-1 \
62
+ libgirepository1.0-dev \
62
63
libglib2.0-dev \
63
64
libical-dev \
64
65
libjpeg-dev \
Original file line number Diff line number Diff line change 1
- 57 : [Telink] Update Docker image (Zephyr update )
1
+ 58 : Add libgirepository1.0-dev to the base image, to make build_python.sh work (assume we want this everywhere )
Original file line number Diff line number Diff line change @@ -222,10 +222,10 @@ if [ -n "$install_virtual_env" ]; then
222
222
if [ " $clean_virtual_env " = " yes" ]; then
223
223
# Create a virtual environment that has access to the built python tools
224
224
echo_blue " Creating a clear VirtualEnv in '$ENVIRONMENT_ROOT ' ..."
225
- virtualenv --clear " $ENVIRONMENT_ROOT "
225
+ python -m venv --clear " $ENVIRONMENT_ROOT "
226
226
elif [ ! -f " $ENVIRONMENT_ROOT " /bin/activate ]; then
227
227
echo_blue " Creating a new VirtualEnv in '$ENVIRONMENT_ROOT ' ..."
228
- virtualenv " $ENVIRONMENT_ROOT "
228
+ python -m venv " $ENVIRONMENT_ROOT "
229
229
fi
230
230
231
231
source " $ENVIRONMENT_ROOT " /bin/activate
You can’t perform that action at this time.
0 commit comments