From ab792a73a68c65f4053a663307517adb8cfdc36e Mon Sep 17 00:00:00 2001 From: Ogi Moore Date: Fri, 28 May 2021 14:17:57 -0700 Subject: [PATCH] Address in-tree-build deprecation issue in pip --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 95dd6f9c..51db3c6b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,9 +64,9 @@ jobs: shell: cmd - name: Install Dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip setuptools wheel python -m pip install ${{ matrix.qt-version }} numpy${{ matrix.numpy-version }} scipy pyopengl h5py matplotlib numba - python -m pip install . + python -m pip install --use-feature=in-tree-build . python -m pip install pytest - name: "Install Linux VirtualDisplay" if: runner.os == 'Linux'