From 19d78eb55d001f18a9671e28a9779bdab4a38cc6 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 30 Jan 2022 13:41:14 +0300 Subject: [PATCH] pyproject.toml: update dependencies black is no longer beta, remove ipython because I can use the one installed system wide and it doesn't like being in a virtual env anyways. flake8 is a new major version. --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 36c371e..584cf79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,10 +13,9 @@ ansi2html = "^1.6.0" gunicorn = "^20.0.4" [tool.poetry.dev-dependencies] -black = "^20.8b1" -flake8 = "^3.8.4" +black = "^22.1.0" +flake8 = "^4.0.1" isort = "^5.7.0" -ipython = "^7.21.0" [build-system] requires = ["poetry-core>=1.0.0"]