From ed9104a026ceed6332dd88c405237a263b300331 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Tue, 30 Aug 2022 09:30:14 +0200 Subject: [PATCH] Fix Poetry export --- Dockerfile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 86da5751c..50637360a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN --mount=type=cache,target=/root/.cache \ # Do the conversion COPY poetry.lock pyproject.toml ./ RUN poetry export --output=requirements.txt \ - && poetry export --dev --output=requirements-dev.txt + && poetry export --with=dev --output=requirements-dev.txt # Base, the biggest thing is to install the Python packages FROM base-all as base diff --git a/pyproject.toml b/pyproject.toml index 18d3fdddc..a87b45fba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,7 +73,7 @@ azure-storage-blob = "12.13.1" waitress = "2.1.2" [tool.poetry.dev-dependencies] -prospector = {extras = ["with_mypy", "with_bandit", "with_pyorama"], version = "1.7.7"} +prospector = {extras = ["with_mypy", "with_bandit", "with_pyroma"], version = "1.7.7"} pytest = "7.1.2" testfixtures = "7.0.0" coverage = "6.4.4"