From 789b80f7191286910655d2323ab3c17ea38934b2 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 16 Dec 2022 13:54:22 +0100 Subject: Explicitly install dependencies It is very buggy if we let setuptools do it for some reason, so have this as an explicit step instead. --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5ece4ea..e8d312f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,10 +21,13 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies + - name: Update pip and setuptools run: | python -m pip install --upgrade pip python -m pip install setuptools + - name: Install dependencies + run: | + python -m pip install -e . python -m pip install -r test-requirements.txt - name: Install old numpy run: | -- cgit v1.2.1