From 26da933c08a2ecab08b1bc1c86d48856cdbf8312 Mon Sep 17 00:00:00 2001 From: Abubakar Abid Date: Thu, 29 Apr 2021 23:57:17 -0400 Subject: [PATCH] fixed requires --- gradio.egg-info/PKG-INFO | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gradio.egg-info/PKG-INFO b/gradio.egg-info/PKG-INFO index 07ed8af939..45147064a4 100644 --- a/gradio.egg-info/PKG-INFO +++ b/gradio.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: gradio -Version: 1.7.4 +Version: 1.7.5 Summary: Python library for easily interacting with trained machine learning models Home-page: https://github.com/gradio-app/gradio-UI Author: Abubakar Abid diff --git a/setup.py b/setup.py index 82ece70c34..21bfd44655 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: setup( name='gradio', - version='1.7.5', + version='1.7.6', include_package_data=True, description='Python library for easily interacting with trained machine learning models', author='Abubakar Abid', @@ -16,12 +16,12 @@ setup( install_requires=[ 'numpy', 'scipy', - 'matplotlib' + 'matplotlib', 'pandas', 'pillow', 'ffmpy', 'markdown2', - 'pycryptodome' + 'pycryptodome', 'requests', 'paramiko', 'analytics-python',