From bdf67581190aee2aac1722ffbbaba836fca87124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20K=C3=B6lling?= Date: Fri, 19 Feb 2021 16:11:11 +0100 Subject: [PATCH] exclude intake version 0.6.1 due to missing Jinja2 dependency --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0fedce6..1d91c3d 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ install_requires=[ "requests", "pyyaml", - "intake", - "aiohttp", + "intake!=0.6.1", # due to lacking jinja2 dependency + "aiohttp", # required by intake to access catalogs via http ], )