-
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
Invalid dev dependency #428
Comments
What is the output of |
|
This is strange. Why is Poetry using the |
Alright, I have figured it out. Simply calling To test the hypothesis, I created a symbolic link as such:
Then run Perhaps a note somewhere in documentation or say calling pip3 instead of pip can prevent this from happening again. |
I've also hit the same problem installing black: $ poetry add --dev black
[ValueError]
Could not find a matching version of package black (That's from inside a 3.6 pyenv virtualenv.) |
Black doesn't have a stable release yet. You need to install it with:
|
Corresponding ticket in Black psf/black#517. |
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. |
-vvv
option).Issue
Doing the following:
Poetry fails to install black 18.6b4 with this error using -vvv:
The issue is that pip2 doesn't find the version 18.6b4
/usr/bin/pip2 install -U black==18.6b4 Collecting black==18.6b4 Could not find a version that satisfies the requirement black==18.6b4 (from versions: ) No matching distribution found for black==18.6b4
Pip3 does find the version:
The text was updated successfully, but these errors were encountered: