Deployment of application failed

Priority: normal
Request: the log says Your Pipfile.lock (cbbaf0) is out of date. Expected: (316068).
And i’m not sure what is causing it.
Should I just delete the pipfile.lock and generate a new one?
Project ID: river-city-saloon-16151
Project Link: https://app.crowdbotics.com/dashboard/app/16151/

1 Like

Hi and thanks for writing in.

Deleting the Pipfile.lock and generating a fresh one is the recommended action here. You should do this every time you update your Pipfile.

If you have Docker installed, you can use this command:
docker run -it --rm -v "$PWD":/django -w /django python:3.7 pip3 install --no-cache-dir -q pipenv && pipenv lock

This worked. Thanks @dmitrii.k

1 Like

You are always welcome!