Skip to content

Commit

Permalink
fix(Poetry): Group dev dependencies correctly
Browse files Browse the repository at this point in the history
Previously, development dependencies were grouped under
[tool.poetry.dev-dependencies] in pyproject.toml. This syntax is
deprecated. Group development dependencies under
[tool.poetry.group.dev.dependencies], the updated syntax.
  • Loading branch information
mwarres committed Aug 9, 2023
1 parent 1325c3f commit fc116ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ build-backend = "poetry.core.masonry.api"
# Keep in sync with .pre-commit-config.yaml and .tool-versions.
python = "==3.11.4"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
commitizen = "==3.6.0" # Keep in sync with .pre-commit-config.yaml.
pre-commit = "==3.3.3"

0 comments on commit fc116ae

Please sign in to comment.