root: remove pipenv constraint

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-11-09 14:19:33 +01:00
parent 123ff7ad1f
commit 94290c7e36
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ COPY ./Pipfile.lock /app/
WORKDIR /app/
RUN pip install pipenv==2021.5.29 && \
RUN pip install pipenv && \
pipenv lock -r > requirements.txt && \
pipenv lock -r --dev-only > requirements-dev.txt

View File

@ -2,7 +2,7 @@
docker-compose -f scripts/ci.docker-compose.yml up -d
sudo apt update
sudo apt install -y libxmlsec1-dev pkg-config
sudo pip install -U wheel pipenv==2021.5.29
sudo pip install -U wheel pipenv
if [[ "$INSTALL" != "true" ]]; then
pipenv install --dev
fi

View File

@ -10,7 +10,7 @@ sudo apt-get install -y nodejs
# Setup python
sudo apt install -y python3.9 python3.9-dev python3-pip libxmlsec1-dev pkg-config
# Setup docker
sudo pip3 install pipenv==2021.5.29
sudo pip3 install pipenv
cd tests/e2e
sudo docker-compose up -d