We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[x ] I am on the latest Poetry version.
I have searched the issues of this repo and believe that this is not a duplicate.
[x ] If an exception occurs when executing a command, I executed it again in debug mode (-vvv option).
-vvv
OS version and name: Ubuntu 16.04
Poetry version: 1.0.3
The following command is throwing error
pip add -vvv git+https://github.com/Prakashvanapalli/mmdetection.git
error:
[AttributeError] 'Call' object has no attribute 'id'
In the debug mode, I see the following changes have been made from 1.0.2 to 1.0.3
if not isinstance(func, ast.Name): continue if func.id != "setup": continue
if not (isinstance(func, ast.Name) and func.id == "setup") and not ( isinstance(func, ast.Attribute) and func.value.id == "setuptools" and func.attr == "setup" ): continue
when I changed the code to the old version. the installation is working fine. May I know why is this problem occurring?
The text was updated successfully, but these errors were encountered:
Thanks a lot for reporting. 👍
Fix is on the way: #2041
Sorry, something went wrong.
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.
finswimmer
Successfully merging a pull request may close this issue.
[x ] I am on the latest Poetry version.
I have searched the issues of this repo and believe that this is not a duplicate.
[x ] If an exception occurs when executing a command, I executed it again in debug mode (
-vvv
option).OS version and name: Ubuntu 16.04
Poetry version: 1.0.3
The following command is throwing error
error:
In the debug mode, I see the following changes have been made from 1.0.2 to 1.0.3
when I changed the code to the old version. the installation is working fine. May I know why is this problem occurring?
The text was updated successfully, but these errors were encountered: