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
-vvv
When running poetry add (& other commands) the package names is saved verbatim from the command line instead of the canonical normalised PyPi name.
poetry add
Current: $ poetry add dJaNgO
$ poetry add dJaNgO
pyproject.toml contents:
pyproject.toml
name = "testproject" version = "0.1.0" description = "" authors = ["Your Name <you@example.com>"] [tool.poetry.dependencies] python = "^3.7" dJaNgO = "^3.0.3" [tool.poetry.dev-dependencies] [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api"
Expected: $ poetry add dJaNgO
name = "testproject" version = "0.1.0" description = "" authors = ["Your Name <you@example.com>"] [tool.poetry.dependencies] python = "^3.7" Django = "^3.0.3" [tool.poetry.dev-dependencies] [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api"
The text was updated successfully, but these errors were encountered:
use pypi package name in pyproject.toml
5fc4db7
read package name from pypi info .info.name close #2098
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.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
-vvv
option).Issue
When running
poetry add
(& other commands) the package names is saved verbatim from the command line instead of the canonical normalised PyPi name.Current:
$ poetry add dJaNgO
pyproject.toml
contents:Expected:
$ poetry add dJaNgO
pyproject.toml
contents:The text was updated successfully, but these errors were encountered: