From b1f4209f417c258d4fe3d64aa53dd9723677a02c Mon Sep 17 00:00:00 2001
From: Kaushik Kulkarni <kaushikcfd@gmail.com>
Date: Sun, 13 Jun 2021 12:48:26 -0500
Subject: [PATCH] remove dependency on pytato

- add pytato to requirements.txt of downstream projects to make them
  compatible with PytatoArrayContext
---
 .github/workflows/ci.yml | 2 ++
 setup.py                 | 1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8c74a38..293428e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -119,6 +119,8 @@ jobs:
 
                 sed -i "/egg=arraycontext/ c git+file://$(readlink -f ..)#egg=arraycontext" requirements.txt
 
+                echo "git+https://github.com/inducer/pytato.git#egg=pytato" >> requirements.txt
+
                 # Avoid slow or complicated tests in downstream projects
                 export PYTEST_ADDOPTS="-k 'not (slowtest or octave or mpi)'"
 
diff --git a/setup.py b/setup.py
index 4921199..62ff4a7 100644
--- a/setup.py
+++ b/setup.py
@@ -44,7 +44,6 @@ def main():
             "loopy>=2019.1",
             "dataclasses; python_version<'3.7'",
             "types-dataclasses",
-            "pytato"
         ],
         package_data={"arraycontext": ["py.typed"]},
     )
-- 
GitLab