-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Not installing extras / Behavior change from 1.0.10 #3129
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
This might be a duplicate of #2992 . I've managed to reproduce the previous correct behavior with
Replacing Feel free to close the issue if I just need to wait for the next release. |
Not sure whether it is a duplicate hence posting here. I am trying to do
However none of the dependencies inside the |
@rickymyl-karhoo @Qu4tro can yo try the fix in #3147 please? Note that #2992 is only partly related; the sisue there is alos the case of the extra package name used. |
How do you install a specific commit/branch? Thank you |
Something like this will work. podman run --rm -i --entrypoint bash python:3.8 <<EOF
set -e
python -m pip install -q git+https://github.com/python-poetry/poetry.git@refs/pull/3147/head
python -m poetry new foobar
pushd foobar
ls
sed -i /pytest/d pyproject.toml
python -m poetry add dramatiq[rabbitmq]
EOF |
Yep, I can confirm that it works with my setup. Thank you for the quick fix. I also want to say, that dependabot has updated to |
Thank you for reporting this @Qu4tro. I might try get a release out soon. Hopefully not many projects get impacted by the dependabot update. :( |
I'm trying to get switched to poetry today, and I ran into this issue. I'll try using an older version to see if that gets me unstuck for today. Edit: I'm unstuck, I think. I'm doing locking with 1.0.10, then installing with the latest release, which seems to work. I'll be glad to be on the latest release. |
Any updates on this? I ran into this issue today, but unfortunately I cannot downgrade to 1.0.10 due to another bug. |
@razorx89 I am waiting on reviews for the fixes; unfortunately the team is a small group of folks volunteering spare time. :) |
Resolves: python-poetry#3129 (cherry picked from commit 38fddf0)
How come this was closed? I'm still having this issue in 1.1.3 |
1.1.3 fixed the issue in my case. There might be something different about your setup that needs to be identified. |
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. |
I am on the latest Poetry version.
I have searched the issues of this repo and believe that this is not a duplicate.
OS version and name: Not relevant
Poetry version: Latest
Link of a Gist with the contents of your pyproject.toml file: Not relevant
Issue
Hey. Heads up, it might be a duplicate, because there are multiple
extra
related issues and it's not trivial for me to parse them all. I'll however try to document my issue with a minimal and reproducible setup, so hopefully it will add some value here.Let's start.
A story of two
poetry
We can observe
pika
is no longer installed in the latest version.diff-so-fancy
for a better visual.rm -rf ~/.cache/pypoetry/virtualenvs/help*
to reset the virtualenvs.poetry 1.1.2
withpoetry master
and it's the same outcome.Let me know if there's anything else I can do to help or if I'm misunderstanding some new requirements .
The text was updated successfully, but these errors were encountered: