15
0
forked from pool/python-fsspec
Files
python-fsspec/python-fsspec.spec
Steve Kowalik f865817b6d - Update to 2025.12.0:
* Enhancements
    + fsspec.parquet to support filters and multiple files (#1945)
    + file system for GitHub gists (#1791)
    + LFS support in github: (#1810)
    + add pipe_file to HTTP (#1799, 1801)
    + add sync http for pyodide (#1177)
    + add open() to referenceFS (#1778)
    + “exclusive” mode for writing (#1762, 1756, 174+)
    + “tree” text display of filesystem contents (#1750)
    + async wrapper for sync FSs (#1745)
    + new known implementation: tosfs (#1739)
    + consilidate block fetch requests (#1733)
    + allow dicts (not just bytes) for referenceFS (#1616
    + make filesystems JSON serializeable (#1612)
    + implement multifile cat() for github (#1620)
    + log hits/misses in bytes cachers (#1566)
  * Fixes
    + strip protocol for sftp (#1940)
    + use one-step mv in jupyterfs (#1937)
    + raise errors in jupyterfs, not return (#1936)
    + allow ls() on a single file for arrowFS (#1931)
    + accept all mode= types in memoryFS (#1922)
    + pass path list to put() in localtempfile for efficiency (#1920)
    + use st_birthtime in localFS, if available (#1883)
    + remove deprecated asyncio use (#1862)
    + create event loop if it doesn’t exist (#1857)
    + don’t make async open() in async-wrapper (#1769)
    + fix CI following dask-expr upstream change (#1781)
    + better webHDFS proxies

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fsspec?expand=0&rev=70
2025-12-19 03:00:15 +00:00

140 lines
4.3 KiB
RPMSpec

#
# spec file for package python-fsspec
#
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%define skip_python39 1
%else
%define psuffix %{nil}
%bcond_with test
%endif
%bcond_without have_pyarrow
%{?sle15_python_module_pythons}
Name: python-fsspec%{psuffix}
Version: 2025.12.0
Release: 0
Summary: Filesystem specification package
License: BSD-3-Clause
URL: https://github.com/fsspec/filesystem_spec
# the tests are only in the GitHub archive
Source: https://github.com/fsspec/filesystem_spec/archive/%{version}.tar.gz#/fsspec-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module hatch-vcs}
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
BuildRequires: fdupes
BuildRequires: fuse
BuildRequires: python-rpm-macros
Requires: fuse
Suggests: python-adlfs
Suggests: python-aiohttp
Suggests: python-dask
Suggests: python-distributed
Suggests: python-dropbox
Suggests: python-dropboxdrivefs
Suggests: python-gcsfs
Suggests: python-paramiko
Suggests: python-pygit2
Suggests: python-requests
Suggests: python-s3fs
Suggests: python-smbprotocol
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module aiohttp}
BuildRequires: %{python_module cloudpickle}
BuildRequires: %{python_module distributed}
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}
%if %{with have_pyarrow}
BuildRequires: %{python_module pyarrow}
%endif
BuildRequires: %{python_module pyftpdlib}
BuildRequires: %{python_module pygit2}
BuildRequires: %{python_module pytest-asyncio}
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}
BuildRequires: %{python_module zstandard}
# cannot test git and http in the same installation (?)
# BuildRequires: %%{python_module pygit2}
# BuildRequires: git-core
%endif
%python_subpackages
%description
A specification for pythonic filesystems.
%prep
%autosetup -p1 -n filesystem_spec-%{version}
%build
export SETUPTOOLS_SCM_PRETEND_VERSION="%{version}"
%pyproject_wheel
%if ! %{with test}
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%if %{with test}
%check
# test_basic relies on speed of FS and timeouts in OBS
donttest="test_basic"
# test_not_cached needs sockets
donttest+=" or test_not_cached"
# wants to open a socket connection to "my_instance.com"
donttest+=" or test_dbfs"
# wants to connect to an Amazon S3 bucket
donttest+=" or test_async_cat_file_ranges"
# wants to connect to ftp.fau.de
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"
# wants to connect to GitHub directly
ignore="--ignore fsspec/implementations/tests/test_github.py"
%pytest -rfEs $ignore -k "not ($donttest)"
%endif
%if ! %{with test}
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/fsspec
%{python_sitelib}/fsspec-%{version}.dist-info
%endif
%changelog