From 14e56d92da9670fbeb2318210ab7f4b38d6ae877 Mon Sep 17 00:00:00 2001 From: Ben Cho Date: Sun, 1 Oct 2023 11:58:24 -0600 Subject: [PATCH] add sklearn dep to ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d75a5bc..e6ceb3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest cython numpy setuptools pandas + pip install flake8 pytest cython numpy setuptools pandas sklearn python setup.py build_ext --inplace # if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8