Accepting request 1165945 from devel:languages:python

- update to 2024.3.1:
  * fix expiration= for sign()
  * do populate dircache in ls()
  * allow passing extra options to mkdir
  * credentials docs
  * retry in bulk rm
  * clean up loop on close

OBS-URL: https://build.opensuse.org/request/show/1165945
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-gcsfs?expand=0&rev=22
This commit is contained in:
Ana Guerrero 2024-04-07 20:13:12 +00:00 committed by Git OBS Bridge
commit b4ba041b48
4 changed files with 18 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4b7d38acd73b2ff674cb1baf2b725c406984d4f90df4b889548c5caa72b675a0
size 90384

3
gcsfs-2024.3.1-gh.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:162217bd50403ce19fae92562006898a4911aa7e739d779fa72095c43d1adb6b
size 93752

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Sun Apr 7 09:00:47 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 2024.3.1:
* fix expiration= for sign()
* do populate dircache in ls()
* allow passing extra options to mkdir
* credentials docs
* retry in bulk rm
* clean up loop on close
-------------------------------------------------------------------
Fri Mar 8 16:17:17 UTC 2024 - Ben Greiner <code@bnavigator.de>

View File

@ -17,7 +17,7 @@
Name: python-gcsfs
Version: 2024.2.0
Version: 2024.3.1
Release: 0
Summary: Filesystem interface over GCS
License: BSD-3-Clause
@ -45,13 +45,14 @@ BuildArch: noarch
BuildRequires: %{python_module aiohttp}
BuildRequires: %{python_module click}
BuildRequires: %{python_module decorator > 4.1.2}
BuildRequires: %{python_module fsspec == %{version}}
BuildRequires: %{python_module fsspec = %{version}}
BuildRequires: %{python_module fusepy}
BuildRequires: %{python_module google-api-core}
BuildRequires: %{python_module google-api-python-client}
BuildRequires: %{python_module google-auth >= 1.2}
BuildRequires: %{python_module google-auth-oauthlib}
BuildRequires: %{python_module google-cloud-storage}
BuildRequires: %{python_module pytest-asyncio}
BuildRequires: %{python_module pytest-timeout}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requests}
@ -99,7 +100,7 @@ donttest="test_fuse"
# finds an existing path on the non-first multiflavor test runs"
donttest+=" or test_mkdir_with_path"
# no http error (which is expected) without network
donttest+=" or test_credentials_from_raw_token"
donttest+=" or test_credentials_from_raw_token or test_sign"
%pytest -rfEs -k "not ($donttest)"
%files %{python_files}