From 44ada8938d04c2abaa37e76e319cf0442a376861 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Mon, 22 May 2023 08:10:35 -0500 Subject: [PATCH] sort deps --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 50750bf..d5c9a52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,15 +55,15 @@ path = "learn_sql_model/__about__.py" [tool.hatch.envs.default] dependencies = [ + "black", "ipython", "mypy", "pyflyby", "pytest", - 'alembic', "pytest-cov", "pytest-mock", "ruff", - "black", + "alembic", ] [tool.hatch.envs.default.scripts] test = "coverage run -m pytest"