forked from pool/python-importlib-resources
* Added missed stream argument in simple.ResourceHandle. Ref
python/cpython#111775.
* MultiplexedPath now expects Traversable paths. String
arguments to MultiplexedPath are now deprecated.
* Enabled support for resources in namespace packages in zip
files. (#287)
- Update to v5.10.1
* #259: files no longer requires the anchor to be specified and can infer the anchor from the caller's scope (defaults to the caller's module).
* bpo-41490: contents is now also more aggressive about consuming
* #110 and bpo-41490: path method is more aggressive about
releasing handles to zipfile objects early, enabling use-cases
like certifi to leave the context open but delete the
* Package no longer exposes importlib_resources.__version__.
Users that wish to inspect the version of importlib_resources
should instead invoke .version('importlib_resources') from
importlib-metadata ( stdlib or backport) directly. This change
* Select pathlib and contextlib imports based on Python version
* Loaders are no longer expected to implement the
abc.TraversableResources interface, but are instead expected to
return TraversableResources from their get_resource_reader
* Traversable is now a Protocol instead of an Abstract Base Class
* #79: Temporary files created will now reflect the filename of
* For improved compatibility, importlib_resources.trees is now
* Add extensibility support for non-standard loaders to supply
Traversable resources. Introduces a new abstract base class
abc.TraversableResources that supersedes (but implements for
compatibility) abc.ResourceReader. Any loader that implements
(implicitly or explicitly) the TraversableResources.files
method will be capable of supplying resources with subdirectory
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-importlib-resources?expand=0&rev=24
77 lines
2.6 KiB
RPMSpec
77 lines
2.6 KiB
RPMSpec
#
|
||
# spec file for package python-importlib-resources
|
||
#
|
||
# Copyright (c) 2023 SUSE LLC
|
||
#
|
||
# 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/
|
||
#
|
||
|
||
|
||
%{?sle15_python_module_pythons}
|
||
Name: python-importlib-resources
|
||
Version: 6.1.1
|
||
Release: 0
|
||
Summary: Read resources from Python packages
|
||
License: Apache-2.0
|
||
URL: https://importlib-resources.readthedocs.io/
|
||
Source: https://files.pythonhosted.org/packages/source/i/importlib_resources/importlib_resources-%{version}.tar.gz
|
||
BuildRequires: %{python_module base >= 3.8}
|
||
BuildRequires: %{python_module pip}
|
||
BuildRequires: %{python_module pytest >= 6}
|
||
BuildRequires: %{python_module setuptools_scm >= 3.4.1}
|
||
BuildRequires: %{python_module setuptools}
|
||
BuildRequires: %{python_module testsuite}
|
||
BuildRequires: %{python_module wheel}
|
||
# Breaking the depcycle; not absolutely needed as ZipReader is not executed in tests.
|
||
# BuildRequires: %%{python_module zipp >= 3.1.0 if %%python-base < 3.10}
|
||
BuildRequires: fdupes
|
||
BuildRequires: python-rpm-macros
|
||
Provides: python-importlib_resources = %{version}
|
||
Obsoletes: python-importlib_resources < %{version}
|
||
BuildArch: noarch
|
||
%if 0%{python_version_nodots} < 310
|
||
Requires: python-zipp >= 3.1.0
|
||
%endif
|
||
%python_subpackages
|
||
|
||
%description
|
||
importlib_resources is a backport of Python standard library
|
||
importlib.resources module for older Pythons. Users of Python 3.9 and
|
||
beyond should use the standard library module, since for these versions,
|
||
importlib_resources just delegates to that module.
|
||
|
||
The key goal of this module is to replace parts of pkg_resources with a
|
||
solution in Python’s stdlib that relies on well-defined APIs. This makes
|
||
reading resources included in packages easier, with more stable and
|
||
consistent semantics.
|
||
|
||
%prep
|
||
%setup -q -n importlib_resources-%{version}
|
||
|
||
%build
|
||
%pyproject_wheel
|
||
|
||
%install
|
||
%pyproject_install
|
||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||
|
||
%check
|
||
%pytest
|
||
|
||
%files %{python_files}
|
||
%doc README.rst
|
||
%license LICENSE
|
||
%{python_sitelib}/importlib_resources
|
||
%{python_sitelib}/importlib_resources-%{version}*-info
|
||
|
||
%changelog
|