From f679f8895999c1ab7e0613c64146ca74b65568af Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 8 May 2020 12:22:17 -0400 Subject: [PATCH] this definitely did not help --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 912f057..c899597 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,19 +37,19 @@ jobs: - name: "Upgrade Pip" run: | - python -m pip install --unstable-feature=resolver -v --upgrade pip + python -m pip install -v --upgrade pip - name: "Install CI Dependencies" run: | - python -m pip install --unstable-feature=resolver -v wheel coverage + python -m pip install -v wheel coverage - name: "Install Test Dependencies" run: | - python -m pip install --unstable-feature=resolver -v -r test-requirements.txt + python -m pip install -v -r test-requirements.txt - name: "Install ZKAPAuthorizer" run: | - python -m pip install --unstable-feature=resolver -v ./ + python -m pip install -v ./ - name: "Dump Python Environment" run: | -- GitLab