From 00894925f6928e1572cb2559ff54436a7c89fe8e Mon Sep 17 00:00:00 2001 From: Trey <73353716+TreyWW@users.noreply.github.com> Date: Sat, 20 Apr 2024 12:04:06 +0100 Subject: [PATCH] refactor: moved mypy deps to own group Signed-off-by: Trey <73353716+TreyWW@users.noreply.github.com> --- poetry.lock | 2 +- pyproject.toml | 17 ++++++++++------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/poetry.lock b/poetry.lock index e836582e..ba573108 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3581,4 +3581,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = ">=3.10,<4.0" -content-hash = "e62bd88fdbd2a2df9131caaba23934b69e85503b5eb760c0b39b1869d5a06487" +content-hash = "66ba72fb6fd8299d6f17660866f6b77e67a4dec0d6f0e79b7d498c2c66d53a33" diff --git a/pyproject.toml b/pyproject.toml index 01b036c2..c074ae62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,16 @@ django = "^5.0.2" django-mathfilters = "^1.0.0" sample-helper-aws-appconfig = "^2.1.0" redis = { extras = ["hiredis"], version = "^5.0.1" } + +djangorestframework = "^3.14.0" +django-tz-detect = "^0.5.0" +typos = "^1.20.3" +pre-commit = "^3.7.0" +pulumi-aws = "^6.29.0" + +[tool.poetry.group.mypy.dependencies] +mypy = "1.7.1" +djangorestframework-stubs = { extras = ["compatible-mypy"], version = "^3.14.5" } boto3-stubs = { extras = [ "sesv2", "events", @@ -25,13 +35,6 @@ boto3-stubs = { extras = [ "iam", "stepfunctions", ], version = "^1.34.76" } -djangorestframework = "^3.14.0" -django-tz-detect = "^0.5.0" -typos = "^1.20.3" -pre-commit = "^3.7.0" -pulumi-aws = "^6.29.0" -mypy = "1.7.1" -djangorestframework-stubs = {extras = ["compatible-mypy"], version = "^3.14.5"} [tool.poetry.group.django.dependencies] Django = "^5.0.2"