From 3efa24b881edb95d1e06bc1c6586a8092675f82e Mon Sep 17 00:00:00 2001 From: idvoryaninova Date: Mon, 3 Feb 2020 14:05:34 +0300 Subject: [PATCH 1/2] ML-9419: ! upgrade pandas version to work with python3.7 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3c668c4..1131388 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ author_email='etl@cian.ru', description='a tool for testing sql queries', install_requires=[ - 'pandas==0.21.1', + 'pandas==0.24.0', 'PyHive[hive]==0.6.1', 'pytest>=4.0', 'pytest-mock~=1.1.0', From cc602ad0a9ef806abf1c5ae5ef2cb84c3fe20f35 Mon Sep 17 00:00:00 2001 From: idvoryaninova Date: Mon, 3 Feb 2020 17:20:24 +0300 Subject: [PATCH 2/2] ML-9419: ! upgrade pandas version to work with python3.7 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 1131388..cbb3914 100644 --- a/setup.py +++ b/setup.py @@ -10,9 +10,9 @@ author_email='etl@cian.ru', description='a tool for testing sql queries', install_requires=[ - 'pandas==0.24.0', - 'PyHive[hive]==0.6.1', + 'pandas==0.*', + 'PyHive[hive]>=0.6.1', 'pytest>=4.0', - 'pytest-mock~=1.1.0', + 'pytest-mock>=1.1.0', ] )