-
-
Notifications
You must be signed in to change notification settings - Fork 754
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
PackageInfo: Invalid constraint (click (>=7.*)) found in uvicorn-0.14.0 dependencies, skipping #1098
Comments
cant reproduce, if you can come up with a reproducible example it would help
|
@gygabyte017 I can't reproduce either, what's your poetry and python versions? But it does look like a violation. 🤔 |
Sorry about that, my apologies, I'm using alpha release of poetry Here's a reproducible example:
I don't know if it makes sense to fix it now to match PEP440, or to wait until poetry |
We just wanted context :) Thanks! 🎉 |
Thanks @gygabyte017 this should be fixed now ! |
(it will be available on the |
Checklist
master
.Describe the bug
When adding uvicorn package with poetry the following warning is raised:
because the constraint
>=7.*
violates PEP440 syntax. It should either be>=7.0
or=7.*
.Because of this, the
click
dependency is not installed and uvicorn may not work.To reproduce
Just execute
poetry add uvicorn
in any environment.Expected behavior
To install
uvicorn
correctly together with all its dependencies.Actual behavior
The
click
dependency is not installed and uvicorn may not work.The text was updated successfully, but these errors were encountered: