-
Notifications
You must be signed in to change notification settings - Fork 293
Is pipenv lock --requirements
correct?
#195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Works as expected AFAICT
and the current version of awscli is 1.15.28 so you can see it's outputting the same versions as are in |
well, I'm still not sure if I understand correctly. I just tried the following:
It should resemble the sequence
After that, Pipfile.lock contains version 1.15.28. What if I want to use exactly the same versions as defined in Pipfile.lock for deployment, similar to |
I'm not sure I follow. What I'm saying is that edit: and |
I can't reproduce the behaviour you describe. When I run
Of course if you pin the version from the start, its written to Pipfile and therefore won't change. |
Huh.. ok I created a new pipenv project and was able to reproduce the behavior you're seeing, no clue why my other project doesn't. Thanks for catching this! |
Maybe I misunderstand the concept of Pipfile.lock and
pipenv lock
, but as far as I see,pipenv lock
updates outdated packages in Pipfile.lock. However, I would assume that during deployment we would want to use packages of a previous freeze (not freeze during deployment). I'm also not sure ifpipenv lock --keep-outdated
would do the right thing.The text was updated successfully, but these errors were encountered: