-
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 has an issue with removing the marker caveat on certain packages #3048
Closed
3 tasks done
Labels
kind/bug
Something isn't working as expected
Comments
xM8WVqaG
added
kind/bug
Something isn't working as expected
status/triage
This issue needs to be triaged
labels
Oct 2, 2020
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 2, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: python-poetry#3048
Just tried the branch from your MR and I can confirm that I can no longer reproduce this issue. Thanks for the quick turn around! |
3 tasks
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 2, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: python-poetry#3048
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 2, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: python-poetry#3048
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 2, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: python-poetry#3048
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 2, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: python-poetry#3048
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 2, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: python-poetry#3048
finswimmer
pushed a commit
that referenced
this issue
Oct 5, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: #3048
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 5, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: python-poetry#3048
finswimmer
pushed a commit
that referenced
this issue
Oct 5, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: #3048
finswimmer
pushed a commit
to finswimmer/poetry
that referenced
this issue
Oct 7, 2020
This change ensures that we resolve dependencies to correctly propagate markers when using `lock --no-update`. Resolves: python-poetry#3048
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. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
-vvv
option).Ubuntu 18.04 bionic
master-04833bc
(1.1.0)Issue
Following up to #3028, I grabbed master to run
poetry lock --no-update
on every project we have to fix the lockfile.However, after running
poetry lock --no-update
on a package that installeddocker
it removed thewin32
caveat breaking the install.Source of
pywin32
:Here is the relevant diff on the
poetry.lock
:I can confirm that by restoring the
marker = "sys_platform == \"win32\" and python_version >= \"3.6\""
poetry install
works again.The text was updated successfully, but these errors were encountered: