17
0

4 Commits

Author SHA256 Message Date
8310411078 Accepting request 1319606 from devel:languages:python
- 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.

OBS-URL: https://build.opensuse.org/request/show/1319606
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-lazy-object-proxy?expand=0&rev=19
2025-11-24 13:13:49 +00:00
edaeb381ed - 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.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-lazy-object-proxy?expand=0&rev=36
2025-11-24 01:20:55 +00:00
abe1f384f6 Accepting request 1281363 from devel:languages:python
- Convert to pip-based build

OBS-URL: https://build.opensuse.org/request/show/1281363
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-lazy-object-proxy?expand=0&rev=18
2025-05-31 17:16:16 +00:00
7cf289a381 - Convert to pip-based build
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-lazy-object-proxy?expand=0&rev=34
2025-05-30 10:24:06 +00:00
4 changed files with 34 additions and 15 deletions

Binary file not shown.

View File

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

View File

@@ -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>

View File

@@ -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