From 4cc90bd3c211e643018ac20569357671dabbdd81 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 8 May 2020 11:56:46 -0400 Subject: [PATCH] See if the alpha resolver makes it any better --- .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 c899597..912f057 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,19 +37,19 @@ jobs: - name: "Upgrade Pip" run: | - python -m pip install -v --upgrade pip + python -m pip install --unstable-feature=resolver -v --upgrade pip - name: "Install CI Dependencies" run: | - python -m pip install -v wheel coverage + python -m pip install --unstable-feature=resolver -v wheel coverage - name: "Install Test Dependencies" run: | - python -m pip install -v -r test-requirements.txt + python -m pip install --unstable-feature=resolver -v -r test-requirements.txt - name: "Install ZKAPAuthorizer" run: | - python -m pip install -v ./ + python -m pip install --unstable-feature=resolver -v ./ - name: "Dump Python Environment" run: | -- GitLab