Skip to content

Commit

Permalink
Attempt to fix ci following 200
Browse files Browse the repository at this point in the history
  • Loading branch information
seankmartin committed Jul 25, 2023
1 parent e37cb1f commit b1a4e68
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit b1a4e68

Please sign in to comment.