Accepting request 942639 from home:bnavigator:branches:devel:languages:python:aws

- Release 2021.11.1
  Enhancements
  * allow compression for fs.open (#826)
  * batch more async operations (#824)
  * allow github backend for alternate URL (#815)
  * speec up reference filesystem (#811)
  Fixes
  * fixes for parquet functionality (#821, 817)
  * typos and docs (#839, 833, 816)
  * local root (#829)
  Other
  * remove BlockSizeError for http (#830)
- Release 2021.11.0
  Enhancement
  * parquet-specific module and cache type (#813, #806)
  Fixes
  * empty ranges (#802, 801, 803)
  * doc typos (#791, 808)
  * entrypoints processing (#784)
  * cat in ZIP (#789)
  Other
  * move to fsspec org
  * doc deps (#786, 791)
- Release 2021.10.1
  Fixes
  * Removed inaccurate ZipFileSystem.cat() override so that the base class' version is used (#789)
  * fix entrypoint processing (#784)
  * case where no blocks of a block-cache have yet been loaded (#801)
  * don't fetch empty ranges (#802, 803)
  Other
  * simplify doc deps (#786, 791)
- Release 2021.10.0
  Fixes
  * only close http connector if present (#779)
  * hdfs strip protocol (#778)
  * fix filecache with check_files (#772)
  * put_file to use _parent (#771)
  Other
  * add kedro link (#781)
- Release 2021.09.0
  Enhancement
  * http put from file-like (#764)
  * implement webhdfs cp/rm_file (#762)
  * multiple (and concurrent) cat_ranges (#744)
  Fixes
  * sphinx warnings (#769)
  * lexists for links (#757)
  * update versioneer (#750)
  * hdfs updates (#749)
  * propagate async timeout error (#746)
  * fix local file seekable (#743)
  * fix http isdir when does not exist (#741)
  Other
  * ocifs, arrow added (#754, #765)
  * promote url_to_fs to top level (#753)

OBS-URL: https://build.opensuse.org/request/show/942639
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fsspec?expand=0&rev=30
This commit is contained in:
Dirk Mueller 2021-12-27 09:14:27 +00:00 committed by Git OBS Bridge
parent 61964f72dd
commit 256c7c4b32
4 changed files with 67 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2edf0e4388dfffd418aebc999f04bc5551befa5e54803fa6f1f13859ee18260e
size 303960

3
fsspec-2021.11.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0870696d9cf032182a8041cc49865ac57f0800a5c948a7342e32a3ac761817c6
size 325012

View File

@ -1,3 +1,62 @@
-------------------------------------------------------------------
Fri Dec 24 23:06:53 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Release 2021.11.1
Enhancements
* allow compression for fs.open (#826)
* batch more async operations (#824)
* allow github backend for alternate URL (#815)
* speec up reference filesystem (#811)
Fixes
* fixes for parquet functionality (#821, 817)
* typos and docs (#839, 833, 816)
* local root (#829)
Other
* remove BlockSizeError for http (#830)
- Release 2021.11.0
Enhancement
* parquet-specific module and cache type (#813, #806)
Fixes
* empty ranges (#802, 801, 803)
* doc typos (#791, 808)
* entrypoints processing (#784)
* cat in ZIP (#789)
Other
* move to fsspec org
* doc deps (#786, 791)
- Release 2021.10.1
Fixes
* Removed inaccurate ZipFileSystem.cat() override so that the base class' version is used (#789)
* fix entrypoint processing (#784)
* case where no blocks of a block-cache have yet been loaded (#801)
* don't fetch empty ranges (#802, 803)
Other
* simplify doc deps (#786, 791)
- Release 2021.10.0
Fixes
* only close http connector if present (#779)
* hdfs strip protocol (#778)
* fix filecache with check_files (#772)
* put_file to use _parent (#771)
Other
* add kedro link (#781)
- Release 2021.09.0
Enhancement
* http put from file-like (#764)
* implement webhdfs cp/rm_file (#762)
* multiple (and concurrent) cat_ranges (#744)
Fixes
* sphinx warnings (#769)
* lexists for links (#757)
* update versioneer (#750)
* hdfs updates (#749)
* propagate async timeout error (#746)
* fix local file seekable (#743)
* fix http isdir when does not exist (#741)
Other
* ocifs, arrow added (#754, #765)
* promote url_to_fs to top level (#753)
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Sep 21 10:00:47 UTC 2021 - Ben Greiner <code@bnavigator.de> Tue Sep 21 10:00:47 UTC 2021 - Ben Greiner <code@bnavigator.de>

View File

@ -26,23 +26,25 @@
%bcond_with test %bcond_with test
%endif %endif
%define skip_python2 1 %define skip_python2 1
%define ghversion 2021.08.1 %define ghversion 2021.11.1
Name: python-fsspec%{psuffix} Name: python-fsspec%{psuffix}
Version: 2021.8.1 Version: 2021.11.1
Release: 0 Release: 0
Summary: Filesystem specification package Summary: Filesystem specification package
License: BSD-3-Clause License: BSD-3-Clause
URL: https://github.com/intake/filesystem_spec URL: https://github.com/fsspec/filesystem_spec
# the tests are only in the GitHub archive # the tests are only in the GitHub archive
Source: %{url}/archive/%{ghversion}.tar.gz#/fsspec-%{ghversion}.tar.gz Source: %{url}/archive/%{ghversion}.tar.gz#/fsspec-%{ghversion}.tar.gz
BuildRequires: %{python_module base >= 3.6} BuildRequires: %{python_module base >= 3.6}
BuildRequires: %{python_module importlib_metadata if %python-base < 3.8} BuildRequires: %{python_module importlib_metadata if %python-base < 3.8}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: fuse
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
%if 0%{?python_version_nodots} < 38 %if 0%{?python_version_nodots} < 38
Requires: python-importlib_metadata Requires: python-importlib_metadata
%endif %endif
Requires: fuse
Suggests: python-adlfs Suggests: python-adlfs
Suggests: python-aiohttp Suggests: python-aiohttp
Suggests: python-pygit2 Suggests: python-pygit2