From f034899517e3c3b7afa3d8d5837d732cf25ce724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20M=C3=A9ndez?= Date: Mon, 5 Feb 2024 18:47:12 -0600 Subject: [PATCH] Added some dev dependencies to default environment --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e27a808..df3e5e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,6 +57,12 @@ include = [ "generic_links/", ] +[tool.hatch.envs.default] +dependencies = [ + "Django>=4.0", "ipython", "ipdb", "mypy", "typing-extensions", +] + + # Test environment [[tool.hatch.envs.test.matrix]] python = ["3.9", "3.10", "3.11"]