From 5637cf97360be52bba1611b510e8352baa6cf918 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20=C3=96zdemir?= Date: Sat, 9 Apr 2022 10:30:19 +0300 Subject: [PATCH] add jinja2 to reqs (#969) --- gradio.egg-info/requires.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/gradio.egg-info/requires.txt b/gradio.egg-info/requires.txt index 004eeeac3e..22332f075c 100644 --- a/gradio.egg-info/requires.txt +++ b/gradio.egg-info/requires.txt @@ -14,3 +14,4 @@ python-multipart pydub requests uvicorn +Jinja2 diff --git a/setup.py b/setup.py index b507f10bbb..311d84c7b7 100644 --- a/setup.py +++ b/setup.py @@ -31,5 +31,6 @@ setup( "pydub", "requests", "uvicorn", + "Jinja2" ], )