Skip to content

Commit

Permalink
setup: bump ossfs==2021.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
isidentical committed Jul 16, 2021
1 parent 6c8673b commit 256250e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def run(self):
s3 = ["s3fs==2021.7.0", "aiobotocore[boto3]==1.3.0"]
azure = ["adlfs==2021.7.0", "azure-identity>=1.4.0", "knack"]
# https://github.com/Legrandin/pycryptodome/issues/465
oss = ["ossfs==2021.7.3"]
oss = ["ossfs==2021.7.5"]
ssh = ["paramiko[invoke]>=2.7.0"]

# Remove the env marker if/when pyarrow is available for Python3.9
Expand Down
6 changes: 3 additions & 3 deletions tests/unit/remote/test_oss.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ def test_init(dvc):
"oss_endpoint": endpoint,
}
fs = OSSFileSystem(**config)
assert fs.fs._endpoint == endpoint
assert fs.fs._auth.id == key_id
assert fs.fs._auth.secret == key_secret
assert fs.fs_args["endpoint"] == endpoint
assert fs.fs_args["key"] == key_id
assert fs.fs_args["secret"] == key_secret

0 comments on commit 256250e

Please sign in to comment.