From 17b19d7dfde8212aafe3c86d1d18d48f78edb8ea Mon Sep 17 00:00:00 2001 From: Richard Bowman Date: Mon, 29 Mar 2021 16:59:40 +0100 Subject: [PATCH] fix poe poe was assuming we were using poetry - I have configured it not to use poetry now. This required using a newer version. --- pyproject.toml | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 02d9cc3d..96eaf8ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,10 @@ line_length = 88 disable = "fixme,C,R" max-line-length = 88 +[tool.poe.executor] +type = "virtualenv" +location = ".venv" + [tool.poe.tasks] black = "black ." black_check = "black --check ." diff --git a/setup.py b/setup.py index 9f50b1e8..e012b40d 100644 --- a/setup.py +++ b/setup.py @@ -107,7 +107,7 @@ setup( "pylint ~= 2.3", "pytest ~= 6.1.2", "mypy ~= 0.790", - "poethepoet ~= 0.9.0", + "poethepoet ~= 0.10.0", "freezegun ~= 1.0.0", "lxml ~= 4.6", "black == 18.3a0",