In the Pipfile,
[packages]
...
Werkzeug = "<1.0.0"
is specified, but when I run
pipenv install --system --skip-lock --dev --deploy
version 1.0.1 gets installed.
In the case of --dev, I needed to specify the version of Werkzeug in dev-packages.
[dev-packages]
...
Werkzeug = "<1.0.0"
Comments