Skip to content

Commit

Permalink
Don't use the --three pipenv flag
Browse files Browse the repository at this point in the history
That flag was removed in the 2023.2.4 release of pipenv:
pypa/pipenv#5576
  • Loading branch information
cristoper committed May 12, 2023
1 parent 332a8dc commit 393313b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV PIPENV_VENV_IN_PROJECT yes
COPY Pipfile Pipfile.lock feedmixer_api.py feedmixer_wsgi.py feedmixer.py /app/

WORKDIR /app/
RUN pipenv --three sync && apt purge
RUN pipenv sync && apt purge
RUN pipenv run pip3 install gunicorn

# build layer without git:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Installation
``$ git clone https://github.com/cristoper/feedmixer.git``
#. ``$ cd feedmixer``
#. Recommended: use pipenv_ to create a virtualenv and install dependencies:
``$ pipenv --three sync``
``$ pipenv sync``

The project consists of three modules:

Expand Down

0 comments on commit 393313b

Please sign in to comment.