Skip to content

Commit ae97f8c

Browse files
authored
[conda] conda deps pinning for azure/gcp downloaders (#2413)
1 parent be09f01 commit ae97f8c

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

metaflow/metaflow_config.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -452,15 +452,7 @@
452452
###
453453
# Debug configuration
454454
###
455-
DEBUG_OPTIONS = [
456-
"subcommand",
457-
"sidecar",
458-
"s3client",
459-
"tracing",
460-
"stubgen",
461-
"userconf",
462-
"conda",
463-
]
455+
DEBUG_OPTIONS = ["subcommand", "sidecar", "s3client", "tracing", "stubgen", "userconf"]
464456

465457
for typ in DEBUG_OPTIONS:
466458
vars()["DEBUG_%s" % typ.upper()] = from_conf("DEBUG_%s" % typ.upper(), False)
@@ -546,10 +538,12 @@ def get_pinned_conda_libs(python_version, datastore_type):
546538
pins["azure-identity"] = ">=1.10.0"
547539
pins["azure-storage-blob"] = ">=12.12.0"
548540
pins["azure-keyvault-secrets"] = ">=4.7.0"
541+
pins["simple-azure-blob-downloader"] = ">=0.1.0"
549542
elif datastore_type == "gs":
550543
pins["google-cloud-storage"] = ">=2.5.0"
551544
pins["google-auth"] = ">=2.11.0"
552545
pins["google-cloud-secret-manager"] = ">=2.10.0"
546+
pins["simple-gcp-object-downloader"] = ">=0.1.0"
553547
elif datastore_type == "local":
554548
pass
555549
else:

0 commit comments

Comments
 (0)