You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am on the latest stable Poetry version, installed using a recommended method.
I have searched the issues of this repo and believe that this is not a duplicate.
I have consulted the FAQ and blog for any relevant entries or release notes.
If an exception occurs when executing a command, I executed it again in debug mode (-vvv option) and have included the output below.
Issue
When the file or path is is /tmp or /var on macos, poetry add /path/to/file.whl fails silently. When rerun with -vvv we get an AssertionError in mixology/partial_solution.py:_register (full stacktrace here). This is the same symptom as #6054, which is marked solved. This also has different repro steps.
We also ran into this issue on macOS 11.7 and 12.6.1. Running poetry lock was failing with no error messages. Changing the local wheel path to something other than /tmp/ allowed us to progress beyond the failure
Poetry version: 1.2.2
Python version: 3.9.13
OS version and name: macOS 12.1
pyproject.toml: pyproject.toml
I am on the latest stable Poetry version, installed using a recommended method.
I have searched the issues of this repo and believe that this is not a duplicate.
I have consulted the FAQ and blog for any relevant entries or release notes.
If an exception occurs when executing a command, I executed it again in debug mode (
-vvv
option) and have included the output below.Issue
When the file or path is is
/tmp
or/var
on macos,poetry add /path/to/file.whl
fails silently. When rerun with-vvv
we get anAssertionError
inmixology/partial_solution.py:_register
(full stacktrace here). This is the same symptom as #6054, which is marked solved. This also has different repro steps.Repro:
mkdir /tmp/bar
pip download -d /tmp/bar requests
poetry add
/tmp/bar/requests-2.28.1-py3-none-any.whl`Note that
pip install
works here as doespoetry add /private/tmp/bar/requests-2.28.1-py3-none-any.whl
The text was updated successfully, but these errors were encountered: