From b1a4e683d8471033aa8cbbc271557677cd10e171 Mon Sep 17 00:00:00 2001 From: seankmartin Date: Tue, 25 Jul 2023 16:13:43 +0100 Subject: [PATCH] Attempt to fix ci following 200 --- .circleci/config.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ef5a3cdf..83303b9a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,13 +34,12 @@ jobs: command: sudo apt-get update && sudo apt-get install -y xvfb libegl1 libdbus-1-3 libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 x11-utils - run: - name: Install python dependencies + name: Setup virtual environment # app-dir: ~/project/package-directory/ # If you're requirements.txt isn't in the root directory. command: | python -m venv venv . venv/bin/activate python -m pip install --upgrade pip - python -m pip install -r requirements.txt - run: name: Clone main repo command: git clone git@github.com:napari/napari.git napari @@ -49,6 +48,11 @@ jobs: command: | . venv/bin/activate python -m pip install -e napari/".[pyside,dev]" -c "napari/resources/constraints/constraints_py3.10.txt" + - run: + name: Install python dependencies + command: | + . venv/bin/activate + python -m pip install -r requirements.txt - run: name: Build docs command: |