-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
poetry lock --no-update gives different results on bitbucket pipeline - egg files are missing #7155
Comments
presumably the egg-containing lockfile was generated by an older version of poetry |
You should re-lock or manually remove the eggs and commit the file; modern versions of Poetry no longer track eggs. |
@dimbleby On my computer, with poetry 1.2.2, if I remove |
Clear your cache, I think we might use the values stored within blindly which is keeping the wheels around. |
@neersighted thanks! Indeed, when I cleared the cache it solved the issue. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
-vvv
option) and have included the output below.Issue
I added
poetry lock --no-update
to my bitbucket pipeline (originally using pre-commit, but it does the same with a simple installation). This caused my pipeline to fail, since on the pipeline the resultingpoetry.lock
file is different.I created a sample repository with the failing pipeline: https://bitbucket.org/noamdx/poetry-bug/pipelines/results/page/1
This is the diff:
It seems that the
.egg
files are missing.Here is the output of
poetry lock -vvv --no-update
on my computer and on the bitbucket pipeline. I don't see any difference:poetry-lock-my.txt
poetry-lock-bitbucket.txt
Thanks!
Noam
The text was updated successfully, but these errors were encountered: