From 3948457f6965a7683b7b06f6a0dabd3dceec746a Mon Sep 17 00:00:00 2001
From: Matthias Diener <mdiener@illinois.edu>
Date: Mon, 14 Jun 2021 17:17:13 -0500
Subject: [PATCH] don't force pytato on downstream projects

---
 .github/workflows/ci.yml | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e6111df..4348663 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -117,18 +117,6 @@ jobs:
                 cd "$DOWNSTREAM_PROJECT"
                 echo "*** $DOWNSTREAM_PROJECT version: $(git rev-parse --short HEAD)"
 
-                sed -i "/egg=arraycontext/ c git+file://$(readlink -f ..)#egg=arraycontext" requirements.txt
-
-                # downstream projects might not be using PytatoArrayContext, force
-                # pytato as a requirement so that using PytatoArrayContext in the
-                # downstream package's tests doesn't result in a failure.
-                if grep -q "pytato"  requirements.txt
-                then
-                    echo "$DOWNSTREAM_PROJECT already has pytato as a requiement";
-                else
-                    echo "git+https://github.com/inducer/pytato.git#egg=pytato" >> requirements.txt
-                fi
-
                 # Avoid slow or complicated tests in downstream projects
                 export PYTEST_ADDOPTS="-k 'not (slowtest or octave or mpi)'"
 
-- 
GitLab