diff --git a/core/setup.py b/core/setup.py index 1f530237471..5a9e762db49 100644 --- a/core/setup.py +++ b/core/setup.py @@ -46,7 +46,7 @@ def read(fname): 'Jinja2>=2.10', 'PyYAML>=3.11', 'sqlparse==0.2.3', - 'networkx>=1.11,<3', + 'networkx>=1.11,<2.4', 'minimal-snowplow-tracker==0.0.2', 'requests>=2.18.0,<3', 'colorama==0.3.9', diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index ca1680159af..4dc824e29dc 100644 --- a/plugins/postgres/setup.py +++ b/plugins/postgres/setup.py @@ -30,6 +30,6 @@ }, install_requires=[ 'dbt-core=={}'.format(package_version), - 'psycopg2>=2.7.5,<2.8', + 'psycopg2>=2.7,<2.8', ] ) diff --git a/plugins/redshift/setup.py b/plugins/redshift/setup.py index 43c526208db..3006e0e4010 100644 --- a/plugins/redshift/setup.py +++ b/plugins/redshift/setup.py @@ -26,13 +26,13 @@ 'include/redshift/dbt_project.yml', 'include/redshift/macros/*.sql', 'include/redshift/macros/**/*.sql', - ] + ], }, install_requires=[ 'dbt-core=={}'.format(package_version), 'dbt-postgres=={}'.format(package_version), - 'boto3>=1.6.23,<1.10.0', - 'botocore>=1.9.23,<1.13.0', - 'psycopg2>=2.7.5,<2.8', - ] + 'psycopg2>=2.7,<2.8', + 'boto3>=1.4.4,<1.11.0', + 'botocore>=1.5.0,<1.14.0', + ], ) diff --git a/plugins/snowflake/setup.py b/plugins/snowflake/setup.py index 6cdb678f349..2f2f553d2a2 100644 --- a/plugins/snowflake/setup.py +++ b/plugins/snowflake/setup.py @@ -30,6 +30,17 @@ }, install_requires=[ 'dbt-core=={}'.format(package_version), - 'snowflake-connector-python>=1.6.12', + 'snowflake-connector-python==2.0.3', + 'requests<2.23', + 'urllib3<1.25', + 'azure-common<2', + 'azure-storage-blob<3', + 'pycryptodomex>=3.2,!=3.5.0,<4', + 'pyOpenSSL>=16.2.0', + 'cffi>=1.9,<2', + 'cryptography>2,<3', + 'pyjwt<2', + 'idna<3', + 'ijson<2.6', ] )