From 16a68fa5bb5bd2576023f5481963ed58e7bb93e2 Mon Sep 17 00:00:00 2001 From: Marius Kurz Date: Fri, 26 Jul 2024 18:19:57 +0200 Subject: [PATCH] Install relexi as package instead of trying to install requirements via old requirement file. --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index dd053a6..1ccef2e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,7 +24,7 @@ jobs: python-version: '3.11' # ADJUST THIS: install all dependencies (including pdoc) - - run: pip install -r requirements.txt + - run: pip install -e . # ADJUST THIS: build your documentation into docs/. # We use a custom build script for pdoc itself, ideally you just run `pdoc -o docs/ ...` here. - run: cd docs/ && bash build_docs.sh