Skip to content

Commit

Permalink
chore(Poetry): Group dev deps with updated syntax
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 will soon
be deprecated. Group development dependencies under
[tool.poetry.group.dev.dependencies], the updated syntax as of Poetry
v1.2.0.
  • Loading branch information
mwarres committed Aug 9, 2023
1 parent 1325c3f commit 92a6326
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 92a6326

Please sign in to comment.