Skip to content

Commit 1c4611d

Browse files
dependabot[bot]karajan1001
authored andcommitted
Bump fsspec from 2023.1.0 to 2023.3.0
Bumps [fsspec](https://github.com/fsspec/filesystem_spec) from 2023.1.0 to 2023.3.0. - [Release notes](https://github.com/fsspec/filesystem_spec/releases) - [Commits](fsspec/filesystem_spec@2023.1.0...2023.3.0) --- updated-dependencies: - dependency-name: fsspec dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 549dbd8 commit 1c4611d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ package_dir=
2626
=src
2727
packages = find:
2828
install_requires=
29-
fsspec==2023.1.0
29+
fsspec==2023.3.0
3030
oss2==2.17.0
3131

3232
[options.extras_require]

tests/test_object.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def test_get_directories(ossfs, tmpdir, test_path):
307307
ossfs.touch(path + "/dir/dirkey/key1")
308308
ossfs.touch(path + "/dir/dir/key")
309309
d = str(tmpdir)
310-
ossfs.get(path + "/dir", d, recursive=True)
310+
ossfs.get(path + "/dir/", d, recursive=True)
311311
assert {"dirkey", "dir"} == set(os.listdir(d))
312312
assert ["key"] == os.listdir(os.path.join(d, "dir"))
313313
assert {"key0", "key1"} == set(os.listdir(os.path.join(d, "dirkey")))

0 commit comments

Comments
 (0)