18
0

5 Commits

Author SHA256 Message Date
65b080fbb8 Accepting request 1251793 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1251793
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-objgraph?expand=0&rev=10
2025-03-11 19:44:04 +00:00
813ea95620 Accepting request 1251744 from home:glaubitz:branches:devel:languages:python
- Update to 3.6.2
  * Add support for Python 3.13.
- Drop python313.patch, fixed upstream

OBS-URL: https://build.opensuse.org/request/show/1251744
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-objgraph?expand=0&rev=22
2025-03-10 12:27:20 +00:00
b5e9384000 Accepting request 1198176 from devel:languages:python
- add python313.patch:
  * skip known testfailure with 3.13
- modernize spec file

    :func:`long_typename`, :func:`safe_repr`, :func:`short_repr`,

OBS-URL: https://build.opensuse.org/request/show/1198176
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-objgraph?expand=0&rev=9
2024-09-03 11:37:32 +00:00
5fdf5af2e2 - modernize spec file
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-objgraph?expand=0&rev=20
2024-09-01 19:15:35 +00:00
24db23a536 - add python313.patch:
* skip known testfailure with 3.13
    :func:`long_typename`, :func:`safe_repr`, :func:`short_repr`,

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-objgraph?expand=0&rev=19
2024-09-01 19:15:23 +00:00
4 changed files with 28 additions and 10 deletions

BIN
objgraph-3.6.1.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
objgraph-3.6.2.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Mon Mar 10 10:13:44 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 3.6.2
* Add support for Python 3.13.
- Drop python313.patch, fixed upstream
-------------------------------------------------------------------
Sun Sep 1 19:14:13 UTC 2024 - Dirk Müller <dmueller@suse.com>
- add python313.patch:
* skip known testfailure with 3.13
- modernize spec file
-------------------------------------------------------------------
Sat Mar 16 08:32:06 UTC 2024 - Dirk Müller <dmueller@suse.com>
@@ -103,7 +117,7 @@ Wed Apr 19 16:16:46 UTC 2017 - toddrme2178@gmail.com
(via the new ``output`` argument) as an alternative to a filename.
* Made internal helper methods private. This includes :func:`find_chain`,
:func:`show_graph`, :func:`obj_node_id`, :func:`obj_label`, :func:`quote`,
:func:`long_typename`, :func:`safe_repr`, :func:`short_repr`,
:func:`long_typename`, :func:`safe_repr`, :func:`short_repr`,
:func:`gradient`, :func:`edge_label`, and :func:`_program_in_path`.
* Correctly determine the name of old-style classes in :func:`count`,
:func:`by_type`, and graph drawing functions.

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-objgraph
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-objgraph
Version: 3.6.1
Version: 3.6.2
Release: 0
Summary: Python module to draw object reference graphs with graphviz
License: MIT
@@ -26,7 +26,9 @@ Group: Development/Languages/Python
URL: http://mg.pov.lt/objgraph/
Source: https://files.pythonhosted.org/packages/source/o/objgraph/objgraph-%{version}.tar.gz
BuildRequires: %{python_module graphviz}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: graphviz-gd
BuildRequires: graphviz-gnome
@@ -44,13 +46,13 @@ graphviz is needed if pretty graphs are desired.
xdot can be used for interactive use.
%prep
%setup -q -n objgraph-%{version}
%autosetup -p1 -n objgraph-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -59,6 +61,8 @@ xdot can be used for interactive use.
%files %{python_files}
%doc README.rst CHANGES.rst HACKING.rst
%license LICENSE
%{python_sitelib}/*
%{python_sitelib}/objgraph.py
%pycache_only %{python_sitelib}/__pycache__/objgraph*
%{python_sitelib}/objgraph-%{version}.dist-info
%changelog