From 7cca8d0375b028dae66ad045f6bcf7f00ea36d84 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Mon, 9 Mar 2020 14:44:34 -0400
Subject: [PATCH] forget about wheelhouses

They have no metadata.  They lose information about extras.  They break installation.
---
 .github/workflows/ci.yaml | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 2c9d898..9e84fdc 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -38,17 +38,10 @@ jobs:
         python -m pip install --upgrade pip
         pip install wheel coverage
 
-    - name: Get Tahoe-LAFS master
-      run: |
-        pip wheel --wheel-dir ./wheelhouse git+https://github.com/tahoe-lafs/tahoe-lafs@master#egg=tahoe-lafs
-
-    - name: Get PrivacyPass bindings
-      run: |
-        pip wheel --wheel-dir ./wheelhouse git+https://github.com/LeastAuthority/privacypass@master#egg=privacypass
-
     - name: "Install Dependencies"
       run: |
-        $Env:PIP_FIND_LINKS = "./wheelhouse"
+        pip install git+https://github.com/LeastAuthority/privacypass@master#egg=privacypass
+        pip install git+https://github.com/tahoe-lafs/tahoe-lafs@master#egg=tahoe-lafs
         python -m pip install -r test-requirements.txt
         python -m pip install ./
 
-- 
GitLab