env:
# This is the version of pipenv all the steps will use
# If changing this, change Dockerfile
- DEFAULT_PIP_ENV_VERSION: "2023.4.20"
+ DEFAULT_PIP_ENV_VERSION: "2023.6.12"
# This is the default version of Python to use in most steps
# If changing this, change Dockerfile
DEFAULT_PYTHON_VERSION: "3.9"
RUN set -eux \
&& echo "Installing pipenv" \
- && python3 -m pip install --no-cache-dir --upgrade pipenv==2023.4.20 \
+ && python3 -m pip install --no-cache-dir --upgrade pipenv==2023.6.12 \
&& echo "Generating requirement.txt" \
&& pipenv requirements > requirements.txt