Skip to content

Commit 8f9baf8

Browse files
Updated Datalake minimum dependency (Azure#16151)
* Updated datalake minimum dependency * updated min dep
1 parent d837721 commit 8f9baf8

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

sdk/storage/azure-storage-file-datalake/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
install_requires=[
9595
"azure-core<2.0.0,>=1.10.0",
9696
"msrest>=0.6.10",
97-
"azure-storage-blob<13.0.0,>=12.6.0"
97+
"azure-storage-blob<13.0.0,>=12.7.0"
9898
],
9999
extras_require={
100100
":python_version<'3.0'": ['futures', 'azure-storage-nspkg<4.0.0,>=3.0.0'],

sdk/storage/azure-storage-file-datalake/tests/test_file.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,6 @@ def test_read_file_to_text(self):
485485

486486
@record
487487
def test_account_sas(self):
488-
pytest.skip("Re-enable this test after min dependency on blobs is updated.")
489488
# SAS URL is calculated from storage key, so this test runs live only
490489
if TestMode.need_recording_file(self.test_mode):
491490
return
@@ -516,7 +515,6 @@ def test_account_sas(self):
516515
file_client.append_data(b"abcd", 0, 4)
517516

518517
def test_account_sas_raises_if_sas_already_in_uri(self):
519-
pytest.skip("Re-enable this test after min dependency on blobs is updated.")
520518
with self.assertRaises(ValueError):
521519
DataLakeFileClient(self.dsc.url + "?sig=foo", self.file_system_name, "foo", credential=AzureSasCredential("?foo=bar"))
522520

sdk/storage/azure-storage-file-datalake/tests/test_file_async.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,12 +519,10 @@ async def _test_account_sas(self):
519519

520520
@record
521521
def test_account_sas_async(self):
522-
pytest.skip("Re-enable this test after min dependency on blobs is updated.")
523522
loop = asyncio.get_event_loop()
524523
loop.run_until_complete(self._test_account_sas())
525524

526525
def test_account_sas_raises_if_sas_already_in_uri(self):
527-
pytest.skip("Re-enable this test after min dependency on blobs is updated.")
528526
with self.assertRaises(ValueError):
529527
DataLakeFileClient(self.dsc.url + "?sig=foo", self.file_system_name, "foo", credential=AzureSasCredential("?foo=bar"))
530528

shared_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ avro<2.0.0,>=1.10.0
148148
#override azure-storage-file-share azure-core<2.0.0,>=1.10.0
149149
#override azure-storage-file-datalake azure-core<2.0.0,>=1.10.0
150150
#override azure-storage-file-datalake msrest>=0.6.10
151-
#override azure-storage-file-datalake azure-storage-blob<13.0.0,>=12.6.0
151+
#override azure-storage-file-datalake azure-storage-blob<13.0.0,>=12.7.0
152152
#override azure-security-attestation msrest>=0.6.0
153153
#override azure-security-attestation azure-core<2.0.0,>=1.8.2
154154
opencensus>=0.6.0

0 commit comments

Comments
 (0)