Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lock python dependency versions #690

Merged
merged 3 commits into from
Sep 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 27 additions & 25 deletions feathr_project/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,35 +20,37 @@
include_package_data=True,
# consider
install_requires=[
'Click',
"azure-storage-file-datalake>=12.5.0",
"azure-synapse-spark",
"azure-identity>=1.8.0", #fixing Azure Machine Learning authentication issue per https://stackoverflow.com/a/72262694/3193073
"py4j",
"loguru",
"pandas",
"redis",
"requests",
"pyapacheatlas",
"pyhocon",
"pandavro",
"pyyaml",
"Jinja2",
"tqdm",
"pyarrow",
'click<=8.1.3',
"py4j<=0.10.9.7",
"loguru<=0.6.0",
"pandas<=1.5.0",
"redis<=4.4.0",
"requests<=2.28.1",
"tqdm<=4.64.1",
"pyapacheatlas<=0.14.0",
"pyhocon<=0.3.59",
"pandavro<=1.7.1",
"pyyaml<=6.0",
"Jinja2<=3.1.2",
"pyarrow<=9.0.0",
"pyspark>=3.1.2",
"python-snappy",
"deltalake",
"graphlib_backport",
"python-snappy<=0.6.1",
# fixing https://github.com/feathr-ai/feathr/issues/687
"deltalake<=0.5.8",
"graphlib_backport<=1.0.3",
"protobuf==3.*",
"azure-keyvault-secrets",
"confluent-kafka",
"databricks-cli",
"avro",
"confluent-kafka<=1.9.2",
"databricks-cli<=0.17.3",
"avro<=1.11.1",
"azure-storage-file-datalake<=12.5.0",
"azure-synapse-spark<=0.7.0",
# fixing Azure Machine Learning authentication issue per https://stackoverflow.com/a/72262694/3193073
"azure-identity>=1.8.0",
"azure-keyvault-secrets<=4.6.0",
# In 1.23.0, azure-core is using ParamSpec which might cause issues in some of the databricks runtime.
# see this for more details:
# https://github.com/Azure/azure-sdk-for-python/pull/22891
# using a version lower than that to workaround this issue.
# using a version lower than that to workaround this issue.
"azure-core<=1.22.1",
"typing_extensions>=4.2.0"
],
Expand All @@ -64,4 +66,4 @@
"Operating System :: OS Independent",
],
python_requires=">=3.7"
)
)