From 92a6326b72117e283ef2ecf77bd3722046a3dbe3 Mon Sep 17 00:00:00 2001 From: Megan Warres Date: Wed, 9 Aug 2023 11:49:46 -0700 Subject: [PATCH] chore(Poetry): Group dev deps with updated syntax 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. --- poetry.lock | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index 9f2a121c..4f096380 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.5.0 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. [[package]] name = "argcomplete" @@ -518,4 +518,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "==3.11.4" -content-hash = "c9d43163f1689be38b91dc9388b2b1ded92e3ec5042f918cd5f5fddb13672af2" +content-hash = "cfc5a55bb7d21aa31ead73e4909ab65c4707aedb95fc15ee0f03ac2f990bf07a" diff --git a/pyproject.toml b/pyproject.toml index 2e5b6613..d04506c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"