Accepting request 948482 from home:bnavigator:branches:devel:languages:python
- Update to 2022.1.0 * Fix blocks cache metadata (#746) * Fix default SMB port (#853) * Fix caching fixes (#856, 855) * Fix explicit close for http files (#866) * Fix put_file to continue when no bytes (#869, 870) * temporary files location (#851, 871) * async abstract methods (#858, 859, 860) * md5 for FIPS (#872) * remove deprecated pyarrow/distutils (#880, 881) - Update flavored requirements: python36 no longer exists, python-distributed does not support python310 yet. OBS-URL: https://build.opensuse.org/request/show/948482 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fsspec?expand=0&rev=31
This commit is contained in:
parent
256c7c4b32
commit
37ddf36728
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0870696d9cf032182a8041cc49865ac57f0800a5c948a7342e32a3ac761817c6
|
||||
size 325012
|
3
fsspec-2022.01.0.tar.gz
Normal file
3
fsspec-2022.01.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:761265810ae1ec8ba7057527cb51805938eb56c638972f8d1325e114cc932c23
|
||||
size 325462
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 24 17:08:51 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Update to 2022.1.0
|
||||
* Fix blocks cache metadata (#746)
|
||||
* Fix default SMB port (#853)
|
||||
* Fix caching fixes (#856, 855)
|
||||
* Fix explicit close for http files (#866)
|
||||
* Fix put_file to continue when no bytes (#869, 870)
|
||||
* temporary files location (#851, 871)
|
||||
* async abstract methods (#858, 859, 860)
|
||||
* md5 for FIPS (#872)
|
||||
* remove deprecated pyarrow/distutils (#880, 881)
|
||||
- Update flavored requirements: python36 no longer exists,
|
||||
python-distributed does not support python310 yet.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 24 23:06:53 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -26,9 +26,9 @@
|
||||
%bcond_with test
|
||||
%endif
|
||||
%define skip_python2 1
|
||||
%define ghversion 2021.11.1
|
||||
%define ghversion 2022.01.0
|
||||
Name: python-fsspec%{psuffix}
|
||||
Version: 2021.11.1
|
||||
Version: 2022.1.0
|
||||
Release: 0
|
||||
Summary: Filesystem specification package
|
||||
License: BSD-3-Clause
|
||||
@ -61,8 +61,12 @@ BuildArch: noarch
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module aiohttp}
|
||||
BuildRequires: %{python_module cloudpickle}
|
||||
BuildRequires: %{python_module distributed if %python-base < 3.10}
|
||||
BuildRequires: %{python_module fusepy}
|
||||
BuildRequires: %{python_module gcsfs}
|
||||
BuildRequires: %{python_module notebook}
|
||||
BuildRequires: %{python_module numpy}
|
||||
BuildRequires: %{python_module panel}
|
||||
BuildRequires: %{python_module paramiko}
|
||||
BuildRequires: %{python_module pyftpdlib}
|
||||
BuildRequires: %{python_module pytest}
|
||||
@ -71,10 +75,6 @@ BuildRequires: %{python_module requests}
|
||||
BuildRequires: %{python_module s3fs}
|
||||
BuildRequires: %{python_module smbprotocol}
|
||||
BuildRequires: %{python_module zstandard}
|
||||
BuildRequires: %{python_module distributed if (%python-base without python36-base)}
|
||||
BuildRequires: %{python_module gcsfs if (%python-base without python36-base)}
|
||||
BuildRequires: %{python_module numpy if (%python-base without python36-base)}
|
||||
BuildRequires: %{python_module panel if (%python-base without python36-base)}
|
||||
# cannot test git and http in the same installation (?)
|
||||
# BuildRequires: %%{python_module pygit2}
|
||||
# BuildRequires: git-core
|
||||
@ -86,8 +86,6 @@ A specification for pythonic filesystems.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n filesystem_spec-%{ghversion}
|
||||
# don't test nonexistent python36-numpy
|
||||
sed -i -e '/^import numpy as np/ d' -e '/^import pytest/ a np = pytest.importorskip("numpy")' fsspec/tests/test_spec.py
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
Loading…
x
Reference in New Issue
Block a user