Compare commits

1 Commits
1.1 ... main

4 changed files with 41 additions and 13 deletions

BIN
objgraph-3.5.0.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,30 @@
-------------------------------------------------------------------
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>
- update to 3.6.1:
* Add support for Python 3.12.
-------------------------------------------------------------------
Tue Dec 12 10:53:15 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.6.0:
* Add support for Python 3.9, 3.10, and 3.11.
* Drop support for Python 2.7 and 3.6.
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 21 12:28:40 UTC 2023 - Dirk Müller <dmueller@suse.com> Fri Apr 21 12:28:40 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

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