Skip to content

Commit

Permalink
Lock many dependencies/sub-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Beck committed Nov 6, 2019
1 parent 2b47cb4 commit b4dd265
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion plugins/postgres/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
},
install_requires=[
'dbt-core=={}'.format(package_version),
'psycopg2>=2.7.5,<2.8',
'psycopg2>=2.7,<2.8',
]
)
10 changes: 5 additions & 5 deletions plugins/redshift/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
],
)
13 changes: 12 additions & 1 deletion plugins/snowflake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]
)

0 comments on commit b4dd265

Please sign in to comment.