From 24f90df13e8de261f1a3fda99e643873d25df109 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sat, 9 Dec 2023 12:28:32 +0300 Subject: [PATCH] pyprojecy.toml: use new group syntax poetry wants us to use `poetry add --group=dev` now, which generates this syntax in the toml. --- pyproject.toml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9afa49b..13c879c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,14 +13,12 @@ psycopg2 = "^2.9.1" requests = "^2.24.0" falcon-swagger-ui = {git = "https://github.com/alanorth/falcon-swagger-ui.git", rev="falcon3-update-swagger-ui"} -[tool.poetry.dev-dependencies] -flake8 = "^6.0.0" -pytest = "^7.0.0" -black = "^23.0.0" -isort = "^5.9.1" - [tool.poetry.group.dev.dependencies] +black = "^23.0.0" fixit = "^2.1.0" +flake8 = "^6.0.0" +isort = "^5.9.1" +pytest = "^7.0.0" [build-system] requires = ["poetry>=0.12"]