Skip to content

Commit 7dcfe36

Browse files
authored
Merge pull request #903 from microsoft/dependabot/pip/azure-storage-blob-gte-12.28.0
Update azure-storage-blob requirement from >=12.5.0 to >=12.28.0
2 parents 389f4d0 + d26a1ec commit 7dcfe36

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

conda/conda-reqs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ azure-mgmt-network>=2.7.0
1212
azure-mgmt-resource>=16.1.0
1313
azure-mgmt-subscription
1414
azure-monitor-query>=1.0.0, <=3.0.0
15-
azure-storage-blob>=12.5.0
15+
azure-storage-blob>=12.28.0
1616
beautifulsoup4>=4.0.0
1717
bokeh>=3.0.0
1818
cryptography>=43.0.1

requirements-all.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pyyaml>=3.13
4646
pydantic<3.0.0,>=1.8.0
4747
pandas<3.0.0,>=1.4.0
4848
tldextract>=2.2.2
49-
azure-storage-blob>=12.5.0
49+
azure-storage-blob>=12.28.0
5050
jinja2>=3.1.5
5151
urllib3>=2.6.3
5252
dnspython<3.0.0,>=2.0.0

setup.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121

2222

2323
def _combine_extras(extras: list) -> list:
24-
return list({pkg for name, pkgs in EXTRAS.items() for pkg in pkgs if name in extras})
24+
return list(
25+
{pkg for name, pkgs in EXTRAS.items() for pkg in pkgs if name in extras}
26+
)
2527

2628

2729
# Extras definitions
@@ -36,7 +38,7 @@ def _combine_extras(extras: list) -> list:
3638
"azure-mgmt-monitor>=2.0.0",
3739
"azure-mgmt-network>=2.7.0",
3840
"azure-mgmt-resource>=16.1.0",
39-
"azure-storage-blob>=12.5.0",
41+
"azure-storage-blob>=12.28.0",
4042
"azure-mgmt-resourcegraph>=8.0.0",
4143
],
4244
"azure_query": [], # now in core install
@@ -54,11 +56,15 @@ def _combine_extras(extras: list) -> list:
5456
"panel": [], # now in core install
5557
"openobserve": ["python_openobserve>=0.4.2"],
5658
}
57-
extras_all = [extra for name, extras in EXTRAS.items() for extra in extras if name != "dev"]
59+
extras_all = [
60+
extra for name, extras in EXTRAS.items() for extra in extras if name != "dev"
61+
]
5862
EXTRAS["all"] = extras_all
5963

6064
# Create combination extras
61-
EXTRAS["all"] = sorted(_combine_extras(list({name for name in EXTRAS if name != "dev"})))
65+
EXTRAS["all"] = sorted(
66+
_combine_extras(list({name for name in EXTRAS if name != "dev"}))
67+
)
6268

6369
EXTRAS["test"] = sorted(_combine_extras(["all", "dev"]))
6470
EXTRAS["sentinel"] = EXTRAS["azure"]

0 commit comments

Comments
 (0)