From 5255360c16a8bc8f9340e6288ba6f869a4c80845 Mon Sep 17 00:00:00 2001 From: Benjamin Auquite Date: Sun, 26 Mar 2023 14:59:37 -0500 Subject: [PATCH] Can't stand the deprecation warnings. --- .github/workflows/pytest.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index a8f49b8c..71e4fd54 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -28,10 +28,10 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - pip install -r core/requirements.txt - pip install -r core/requirements_test.txt - pip install -e core/ - pip install $(python test_dependencies.py) + pip install -r core/requirements.txt --use-pep517 + pip install -r core/requirements_test.txt --use-pep517 + pip install -e core/ --use-pep517 + pip install $(python test_dependencies.py) --use-pep517 - name: Run pytest timeout-minutes: 60 run: |