From ae466a85564114a8de7ccb5620b312b0af15b68e75e9d053c5fbd9b5e9ef3108 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 7 Dec 2023 21:30:27 +0000 Subject: [PATCH 1/3] - update to 2023.12.1: * Remove trailing "/" from directory names in zipFS (#1445) * allow HTTP size guess in more circumstances (#1440) * allow kwargs passed to GUI to be dict (#1437) * transaction support for writing via a cache FS (#1434) * make cached FSs work better with async backends (#1429) * allow FSs to set their transaction implementation (#1424) * add dataFS (#1421, 1415) * allow basic auth in webHDFS (#1409) * in referenceFS, maintain order when some keys are omitted in cat (#1436) * nested subdirectory listing in referenceFS (#1433) * allow "=" in webHDF paths (#1428) * fix file mode to consistent "r+b" format (#1426) * pass on kwargs in HTTP glob (#1422) * allow Path in can_be_local and open_local (#1419, #1418) * fix parent for cachedFS (#1413) * "ends" list in _cat_ranges was incorrect (#1402) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fsspec?expand=0&rev=58 --- fsspec-2023.10.0.tar.gz | 3 --- fsspec-2023.12.1.tar.gz | 3 +++ python-fsspec.changes | 22 ++++++++++++++++++++++ python-fsspec.spec | 2 +- 4 files changed, 26 insertions(+), 4 deletions(-) delete mode 100644 fsspec-2023.10.0.tar.gz create mode 100644 fsspec-2023.12.1.tar.gz diff --git a/fsspec-2023.10.0.tar.gz b/fsspec-2023.10.0.tar.gz deleted file mode 100644 index ce6a59f..0000000 --- a/fsspec-2023.10.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:545279a88a0fa56d89ba672844f8d097652d003e796a45953c593d3a8771c25d -size 404836 diff --git a/fsspec-2023.12.1.tar.gz b/fsspec-2023.12.1.tar.gz new file mode 100644 index 0000000..736d7fb --- /dev/null +++ b/fsspec-2023.12.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ab4a9da2586fc3802c8fb3fa143cba0cdfc88e218833e892f64af673b0192b +size 408497 diff --git a/python-fsspec.changes b/python-fsspec.changes index eba9680..8ffdf18 100644 --- a/python-fsspec.changes +++ b/python-fsspec.changes @@ -1,3 +1,25 @@ +------------------------------------------------------------------- +Thu Dec 7 21:30:12 UTC 2023 - Dirk Müller + +- update to 2023.12.1: + * Remove trailing "/" from directory names in zipFS (#1445) + * allow HTTP size guess in more circumstances (#1440) + * allow kwargs passed to GUI to be dict (#1437) + * transaction support for writing via a cache FS (#1434) + * make cached FSs work better with async backends (#1429) + * allow FSs to set their transaction implementation (#1424) + * add dataFS (#1421, 1415) + * allow basic auth in webHDFS (#1409) + * in referenceFS, maintain order when some keys are omitted in + cat (#1436) + * nested subdirectory listing in referenceFS (#1433) + * allow "=" in webHDF paths (#1428) + * fix file mode to consistent "r+b" format (#1426) + * pass on kwargs in HTTP glob (#1422) + * allow Path in can_be_local and open_local (#1419, #1418) + * fix parent for cachedFS (#1413) + * "ends" list in _cat_ranges was incorrect (#1402) + ------------------------------------------------------------------- Tue Nov 14 20:22:08 UTC 2023 - Ondřej Súkup diff --git a/python-fsspec.spec b/python-fsspec.spec index 157b31a..8f01759 100644 --- a/python-fsspec.spec +++ b/python-fsspec.spec @@ -27,7 +27,7 @@ %{?sle15_python_module_pythons} Name: python-fsspec%{psuffix} -Version: 2023.10.0 +Version: 2023.12.1 Release: 0 Summary: Filesystem specification package License: BSD-3-Clause From 16cdcba3418e0ef3bcab158ae6aaad5fe571c18fe0f647466827a76da505969f Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 16 Dec 2023 12:45:12 +0000 Subject: [PATCH 2/3] - update to 2023.12.2: * top-level glob in ZIP (#1454) * append mode on local ZIP files/truncate (#1449) * restrict ":" as protocol marker to data: (#1452) * sftp relative paths (#1451) * http encoding in HTTP FS put_file (#1450) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fsspec?expand=0&rev=59 --- fsspec-2023.12.1.tar.gz | 3 --- fsspec-2023.12.2.tar.gz | 3 +++ python-fsspec.changes | 10 ++++++++++ python-fsspec.spec | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) delete mode 100644 fsspec-2023.12.1.tar.gz create mode 100644 fsspec-2023.12.2.tar.gz diff --git a/fsspec-2023.12.1.tar.gz b/fsspec-2023.12.1.tar.gz deleted file mode 100644 index 736d7fb..0000000 --- a/fsspec-2023.12.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:30ab4a9da2586fc3802c8fb3fa143cba0cdfc88e218833e892f64af673b0192b -size 408497 diff --git a/fsspec-2023.12.2.tar.gz b/fsspec-2023.12.2.tar.gz new file mode 100644 index 0000000..6a5766c --- /dev/null +++ b/fsspec-2023.12.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d847f52d8beaa05f81513f2c4d12c8079ba998dafac1c4eb85a1e240190b856 +size 409313 diff --git a/python-fsspec.changes b/python-fsspec.changes index 8ffdf18..ce81f58 100644 --- a/python-fsspec.changes +++ b/python-fsspec.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Sat Dec 16 12:44:59 UTC 2023 - Dirk Müller + +- update to 2023.12.2: + * top-level glob in ZIP (#1454) + * append mode on local ZIP files/truncate (#1449) + * restrict ":" as protocol marker to data: (#1452) + * sftp relative paths (#1451) + * http encoding in HTTP FS put_file (#1450) + ------------------------------------------------------------------- Thu Dec 7 21:30:12 UTC 2023 - Dirk Müller diff --git a/python-fsspec.spec b/python-fsspec.spec index 8f01759..e441396 100644 --- a/python-fsspec.spec +++ b/python-fsspec.spec @@ -27,7 +27,7 @@ %{?sle15_python_module_pythons} Name: python-fsspec%{psuffix} -Version: 2023.12.1 +Version: 2023.12.2 Release: 0 Summary: Filesystem specification package License: BSD-3-Clause From d61c1f2124232f947a295125436f0a0d978879b18326c6eb098febfa6b3c495e Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 16 Dec 2023 17:02:25 +0000 Subject: [PATCH 3/3] OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fsspec?expand=0&rev=60 --- python-fsspec.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python-fsspec.spec b/python-fsspec.spec index e441396..5008ad2 100644 --- a/python-fsspec.spec +++ b/python-fsspec.spec @@ -63,16 +63,19 @@ BuildRequires: %{python_module fastparquet} BuildRequires: %{python_module fusepy} BuildRequires: %{python_module gcsfs} BuildRequires: %{python_module lz4} +BuildRequires: %{python_module mistune} BuildRequires: %{python_module notebook} BuildRequires: %{python_module numpy} BuildRequires: %{python_module panel} BuildRequires: %{python_module paramiko} BuildRequires: %{python_module pyarrow} BuildRequires: %{python_module pyftpdlib} +BuildRequires: %{python_module pygit2} BuildRequires: %{python_module pytest-mock} BuildRequires: %{python_module pytest} BuildRequires: %{python_module python-snappy} BuildRequires: %{python_module requests} +BuildRequires: git-core # Too tight of a aiobotocore pinning: gh#fsspec/s3fs#615, gh#aio-libs/aiobotocore#971 #BuildRequires: %%{python_module s3fs} BuildRequires: %{python_module smbprotocol} @@ -110,6 +113,8 @@ donttest+=" or test_dbfs" donttest+=" or test_find" # does not like the '.' from the version in the build path donttest+=" or (test_local and test_make_path_posix)" +# no fuse module loaded +donttest+=" or test_fuse" %pytest -rfEs -k "not ($donttest)" %endif