From 677bfb9acb43fc48fc0eafc88ec550878232a552 Mon Sep 17 00:00:00 2001 From: Blampey Quentin Date: Thu, 9 Nov 2023 11:11:19 +0100 Subject: [PATCH] fixing CI to use cellpose --- .github/workflows/ci.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a16ad59..778d6612 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: #---------------------------------------------- - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: poetry install --extras "dev" + run: poetry install --extras "dev cellpose" #---------------------------------------------- # run test suite #---------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 1d4efb49..5e1232d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,8 @@ isort = { version = "^5.10.1", optional = true } pytest = { version = "^7.1.3", optional = true } ipykernel = { version = "^6.25.2", optional = true } mkdocs-material = { version = "^9.3.2", optional = true } +mkdocstrings = { version = "^0.23.0", optional = true } +mkdocstrings-python = { version = "^1.7.3", optional = true } cellpose = { version = "^2.2.3", optional = true } opencv-python = { version = "^4.8.0.76", optional = true } @@ -30,8 +32,6 @@ toml = { version = "^0.10.2", optional = true } loompy = { version = "^3.0.7", optional = true } tangram-sc = { version = "^1.0.4", optional = true } -mkdocstrings = { version = "^0.23.0", optional = true } -mkdocstrings-python = { version = "^1.7.3", optional = true } [tool.poetry.extras] cellpose = ["cellpose", "opencv-python"]