From 96563fbf0df28e06428ce584ded55a3e597cfc50 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 12 Nov 2021 08:01:49 -0500
Subject: [PATCH] get the tahoe branch we depend on into the ci env

---
 .circleci/config.yml      | 3 +++
 .github/workflows/ci.yaml | 2 ++
 2 files changed, 5 insertions(+)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index c7a3456..2751d76 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -120,6 +120,9 @@ jobs:
             # dependencies into the environment.
             venv/bin/pip install --no-index --find-links file://${PWD}/wheelhouse .[test]
 
+            # For a while we depend on a pretty fresh Tahoe
+            pip install https://github.com/tahoe-lafs/tahoe-lafs/archive/refs/heads/3842.allocate_buckets-without-lease-renewal.zip
+
       - run:
           name: "Test"
           command: |
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 8ad846a..66cf508 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -40,6 +40,8 @@ jobs:
     - name: "Install ZKAPAuthorizer and dependencies"
       run: |
         python -m pip install -v ./[test]
+        # For a while we depend on a pretty fresh Tahoe
+        pip install https://github.com/tahoe-lafs/tahoe-lafs/archive/refs/heads/3842.allocate_buckets-without-lease-renewal.zip
 
     - name: "Dump Python Environment"
       run: |
-- 
GitLab