Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 8310411078 | |||
| edaeb381ed | |||
| abe1f384f6 | |||
| 7cf289a381 |
BIN
lazy-object-proxy-1.10.0.tar.gz
LFS
BIN
lazy-object-proxy-1.10.0.tar.gz
LFS
Binary file not shown.
3
lazy_object_proxy-1.12.0.tar.gz
Normal file
3
lazy_object_proxy-1.12.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1f5a462d92fd0cfb82f1fab28b51bfb209fabbe6aabf7f0d51472c0c124c0c61
|
||||
size 43681
|
||||
@@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 24 01:20:29 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 1.12.0:
|
||||
* Fixed testing issues when C extensions are not desired.
|
||||
* Added support for GraalPy.
|
||||
* Fixed testing issues on Python 3.14.
|
||||
* Modernized packaging to have metadata in ``pyproject.toml``.
|
||||
* Added Python 3.14 wheels.
|
||||
* Added Python 3.13 wheels.
|
||||
* Added support for ``__format__``.
|
||||
* Dropped support for Python 3.8.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 30 10:23:55 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Convert to pip-based build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 16 21:01:46 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file
|
||||
# spec file for package python-lazy-object-proxy
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# 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
|
||||
@@ -26,16 +26,17 @@
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-lazy-object-proxy%{psuffix}
|
||||
Version: 1.10.0
|
||||
Version: 1.12.0
|
||||
Release: 0
|
||||
Summary: Rebuild a new abstract syntax tree from Python's ast
|
||||
License: BSD-2-Clause
|
||||
Group: Development/Libraries/Python
|
||||
URL: https://github.com/ionelmc/python-lazy-object-proxy
|
||||
Source: https://files.pythonhosted.org/packages/source/l/lazy-object-proxy/lazy-object-proxy-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module setuptools >= 45}
|
||||
BuildRequires: %{python_module setuptools_scm >= 6.2}
|
||||
Source: https://files.pythonhosted.org/packages/source/l/lazy-object-proxy/lazy_object_proxy-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel >= 3.9}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools >= 75}
|
||||
BuildRequires: %{python_module setuptools_scm >= 8}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Obsoletes: python-lazy_object_proxy < %{version}-%{release}
|
||||
@@ -52,17 +53,17 @@ A fast and thorough lazy object proxy that rebuilds a new abstract syntax tree
|
||||
from Python's ast
|
||||
|
||||
%prep
|
||||
%setup -q -n lazy-object-proxy-%{version}
|
||||
%setup -q -n lazy_object_proxy-%{version}
|
||||
|
||||
%build
|
||||
%if !%{with test}
|
||||
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
%endif
|
||||
|
||||
%install
|
||||
%if !%{with test}
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||
%endif
|
||||
|
||||
@@ -76,7 +77,7 @@ export CFLAGS="%{optflags} -fno-strict-aliasing"
|
||||
%doc AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst README.rst docs
|
||||
%license LICENSE
|
||||
%{python_sitearch}/lazy_object_proxy
|
||||
%{python_sitearch}/lazy_object_proxy-%{version}*-info
|
||||
%{python_sitearch}/lazy_object_proxy-%{version}.dist-info
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user