From 1d2af79e01b05c8543f5288bd3158e76f2bc5e5d Mon Sep 17 00:00:00 2001 From: cproof Date: Fri, 20 Mar 2026 17:45:04 +0000 Subject: [PATCH 1/2] FIX: doc build --- .circleci/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 17da7d6..900c7ad 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,11 +11,10 @@ jobs: - run: name: Install Python dependencies command: | - python -m pip install --user \ - -r docs-requirements.txt + python -m pip install -r docs-requirements.txt - run: name: install module - command: python -m pip install --user -ve . + command: python -m pip install -ve . - run: name: Build docs command: cd docs/ && make html From 21050f1e35bf159c6f84c33e7612e514aa9abe69 Mon Sep 17 00:00:00 2001 From: cproof Date: Fri, 20 Mar 2026 17:48:59 +0000 Subject: [PATCH 2/2] FIX: doc build --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 900c7ad..d9e7df8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,9 @@ jobs: executor: python/default steps: - checkout + - run: + name: Upgrade pip and setuptools + command: python -m ensurepip --upgrade || true && python -m pip install --upgrade pip setuptools - run: name: Install Python dependencies command: |