From 0d1eb05549ad80853bd99ce0105321b5b59737bf Mon Sep 17 00:00:00 2001 From: Robin De Schepper Date: Tue, 12 Dec 2023 11:03:32 +0100 Subject: [PATCH] change installation order for dep on self --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c6361a7..7aac5da 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,9 +36,10 @@ jobs: - name: Install dependencies & self run: | python -m pip install --upgrade pip + pip install -e . --no-deps pip install -r requirements.txt --prefer-binary - pip install NEURON==${{ matrix.nrn }} pip install -e . + pip install NEURON==${{ matrix.nrn }} - name: Run package-free tests run: coverage run -p -m unittest -v - name: Install test package