From 27720a3cd124394797e6e3b12e39979dcfe9cd6f Mon Sep 17 00:00:00 2001 From: Peter Kosztolanyi Date: Tue, 23 Mar 2021 11:40:26 +0000 Subject: [PATCH] Bump snowflake-connector-python[pandas] from 2.3.10 to 2.4.1 (#156) --- setup.py | 2 +- tests/integration/test_target_snowflake.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 65ab7cd1..c2133361 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ py_modules=["target_snowflake"], install_requires=[ 'pipelinewise-singer-python==1.*', - 'snowflake-connector-python[pandas]==2.3.10', + 'snowflake-connector-python[pandas]==2.4.1', 'inflection==0.5.1', 'joblib==1.0.1', 'numpy<1.21.0', diff --git a/tests/integration/test_target_snowflake.py b/tests/integration/test_target_snowflake.py index 2a122c00..06be8b90 100644 --- a/tests/integration/test_target_snowflake.py +++ b/tests/integration/test_target_snowflake.py @@ -1069,19 +1069,19 @@ def test_query_tagging(self): target_schema = self.config['default_target_schema'] self.assertEqual(result, [{ 'QUERY_TAG': f'PPW test tap run at {current_time}. Loading into {target_db}..', - 'QUERIES': 6 + 'QUERIES': 4 }, { 'QUERY_TAG': f'PPW test tap run at {current_time}. Loading into {target_db}.{target_schema}.TEST_TABLE_ONE', - 'QUERIES': 12 + 'QUERIES': 7 }, { 'QUERY_TAG': f'PPW test tap run at {current_time}. Loading into {target_db}.{target_schema}.TEST_TABLE_THREE', - 'QUERIES': 10 + 'QUERIES': 6 }, { 'QUERY_TAG': f'PPW test tap run at {current_time}. Loading into {target_db}.{target_schema}.TEST_TABLE_TWO', - 'QUERIES': 10 + 'QUERIES': 6 } ])