From e3efd45078cb9f3eb56567547fa5d2533e3c3eda Mon Sep 17 00:00:00 2001 From: Pete MacKinnon Date: Thu, 15 Sep 2022 13:07:10 -0400 Subject: [PATCH] Add pluggy to docker build for CLI; fixes 357 (#358) Fixes #357 Conda pulls it in by default via pytest but need to explicitly add for docker in requirements Authors: - Pete MacKinnon (https://github.com/pdmack) - Michael Demoret (https://github.com/mdemoret-nv) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: https://github.com/nv-morpheus/Morpheus/pull/358 --- ci/conda/recipes/morpheus/meta.yaml | 1 + setup.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/ci/conda/recipes/morpheus/meta.yaml b/ci/conda/recipes/morpheus/meta.yaml index 11a5a6ab40..c553c800a7 100644 --- a/ci/conda/recipes/morpheus/meta.yaml +++ b/ci/conda/recipes/morpheus/meta.yaml @@ -78,6 +78,7 @@ outputs: - mlflow >=1.23 - networkx - pandas 1.3 + - pluggy - python - tqdm - typing_utils diff --git a/setup.py b/setup.py index 3ef4b83133..eabfa0fa2f 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,10 @@ "docker", "dfencoder @ git+https://github.com/nv-morpheus/dfencoder.git@branch-22.09#egg=dfencoder", "grpcio-channelz", + "mlflow>=1.23", "networkx", + "pandas>=1.3", + "pluggy", "torch==1.10.2+cu113", "tqdm", "tritonclient[all]",