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 Sep 18, 2023
1 parent cdb3d69 commit 53bdfee
Show file tree
Hide file tree
Showing 2 changed files with 4 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.

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

[tool.poetry.dev-dependencies]

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

0 comments on commit 53bdfee

Please sign in to comment.