-
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
is there a way to control poetry's own dependencies? #7877
Comments
On such an old version, the only way is to manually get into the venv Poetry is installed in and reinstall packages you want with |
i see... we have poetry pinned to 1.1.15 because we are affected by #6301 which we have not had time to address... thanks for the manual update suggestion, i will try it |
Our github action CD builds are currently failing with an `HTTPResponse` AttributeError. Per these updates: python-poetry/poetry#7877 psf/cachecontrol#292 This issue is related to the pinned dependencies installed by poetry based on our version selection. Any version of poetry passed 1.2 should not have this issue. I also added ipykernel as a dev dependency to use Python notebooks with the poetry shell. Asana Task: https://app.asana.com/0/1204517240145658/1204531708939345
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. |
poetry installs its own dependencies separately:
(this is inside a cloud ci instance that installs poetry afresh every time it runs)
both the above versions are affected by psf/cachecontrol#292
so pinning versions in our projects doesn't help because the affected versions are inside poetry itself
is there a way to control this? i looked at the script from https://install.python-poetry.org and didn't see anything in the
argparse
arguments that stood out... but asking in case there is a wayThe text was updated successfully, but these errors were encountered: