From cce39c5a2e09af0a37c1b0f88bfac6108c8375ed Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 8 May 2020 11:38:35 -0400
Subject: [PATCH] Try to get more information about why pip is doing these
 things

Why is pip installing "Twisted[tls]>16.4" when Tahoe-LAFS asks for
"Twisted[tls,conch] >= 18.4.0"?
---
 .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 9e31663..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 --upgrade pip
+        python -m pip install -v --upgrade pip
 
     - name: "Install CI Dependencies"
       run: |
-        python -m pip install wheel coverage
+        python -m pip install -v wheel coverage
 
     - name: "Install Test Dependencies"
       run: |
-        python -m pip install -r test-requirements.txt
+        python -m pip install -v -r test-requirements.txt
 
     - name: "Install ZKAPAuthorizer"
       run: |
-        python -m pip install ./
+        python -m pip install -v ./
 
     - name: "Dump Python Environment"
       run: |
-- 
GitLab