From 910aae2902ed0d1034c9bc83e8e40c64eda8e366 Mon Sep 17 00:00:00 2001 From: Jayaram Kancherla Date: Sun, 8 Dec 2024 09:00:56 -0800 Subject: [PATCH] simplify build deps --- .github/workflows/build-docs.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 383c3ac..fd07891 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -24,10 +24,7 @@ jobs: - name: Install Python dependencies run: | python -m pip install --upgrade pip setuptools - DEPENDENCIES=$(python -c 'from setuptools.config.setupcfg import read_configuration as c; a = c("setup.cfg"); print(" ".join(a["options"]["install_requires"][1:]))') - pip install ${DEPENDENCIES} - DOCDEPENDENCIES=$(python -c 'with open("docs/requirements.txt") as a: available = list(a); print(" ".join(map(lambda x : x.strip(), filter(lambda x : not x.startswith("#"), available))))') - pip install ${DOCDEPENDENCIES} + pip install cmake pybind11 numpy tox assorthead mattress>=0.1.4 - name: Build docs run: |