From fb874ca9e1a1b3cb4d25edf5471df19c75ccafc1 Mon Sep 17 00:00:00 2001 From: Daniel Craig <39860830+leinadjmc@users.noreply.github.com> Date: Fri, 19 Nov 2021 14:59:56 +0000 Subject: [PATCH] Include pandas as requirement Pandas is imported in api.py but is not included as an install requirement here in the setup.py. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0743763..e97abac 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ include_package_data=True, long_description=open('README.md').read(), long_description_content_type='text/markdown', - install_requires=['requests >= 2.18'], + install_requires=['requests >= 2.18', 'pandas >= 1.3.4'], home_page='', classifiers=[ 'Environment :: Console',