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
Due to poetry changes we now have two development dependencies sections:
poetry
[tool.poetry.dev-dependencies] flake8-docstrings = "^1.6.0" pytest = "^7.2.2" black = "^23.1.0" isort = "^5.10.1" pytest-cov = "^4.0.0" pytest-asyncio = "^0.19.0" nox = "^2022.1.7" nox-poetry = "^1.0.1" pytest-mock = "^3.8.2" bump2version = "^1.0.1" [tool.poetry.group.dev.dependencies] pandas = "^1.5.3"
Those need to all be under tool.poetry.group.dev.dependencies based on the feedback poetry now gives when you poetry add --dev
tool.poetry.group.dev.dependencies
poetry add --dev
The --dev option is deprecated, use the `--group dev` notation instead.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Due to
poetry
changes we now have two development dependencies sections:Those need to all be under
tool.poetry.group.dev.dependencies
based on the feedbackpoetry
now gives when youpoetry add --dev
The text was updated successfully, but these errors were encountered: