diff options
-rw-r--r-- | requirements.txt | 2 | ||||
-rwxr-xr-x | update.sh | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt index 6b2a0903..91b1ba01 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ cython -e git+git://git.louiz.org/slixmpp#egg=slixmpp -aiodns +aiodns==0.3.2 pycares==0.7 pygments @@ -37,6 +37,7 @@ then # In case of a python version upgrade echo 'Trying to upgrade the virtualenv' $POEZIO_VENV_COMMAND --upgrade "$POEZIO_VENV" + $POEZIO_VENV_COMMAND --system-site-packages "$POEZIO_VENV" . "$POEZIO_VENV/bin/activate" echo 'Updating the in-venv pip' @@ -49,6 +50,7 @@ then else echo "Creating the $POEZIO_VENV virtualenv" $POEZIO_VENV_COMMAND "$POEZIO_VENV" + $POEZIO_VENV_COMMAND --system-site-packages "$POEZIO_VENV" . "$POEZIO_VENV/bin/activate" cd "$POEZIO_VENV" # needed to download slixmpp inside the venv |