Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-altgraph for openSUSE:Factory
checked in at 2023-10-05 20:03:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-altgraph (Old)
and /work/SRC/openSUSE:Factory/.python-altgraph.new.28202 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-altgraph"
Thu Oct 5 20:03:39 2023 rev:10 rq:1115558 version:0.17.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-altgraph/python-altgraph.changes
2023-06-12 15:26:47.971175559 +0200
+++
/work/SRC/openSUSE:Factory/.python-altgraph.new.28202/python-altgraph.changes
2023-10-05 20:04:32.145710046 +0200
@@ -1,0 +2,6 @@
+Wed Oct 4 09:51:15 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 0.17.4:
+ * python 3.12 support
+
+-------------------------------------------------------------------
Old:
----
altgraph-0.17.3.tar.gz
New:
----
altgraph-0.17.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-altgraph.spec ++++++
--- /var/tmp/diff_new_pack.THTsSB/_old 2023-10-05 20:04:33.217748775 +0200
+++ /var/tmp/diff_new_pack.THTsSB/_new 2023-10-05 20:04:33.221748920 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-altgraph
#
-# Copyright (c) 2022 SUSE LLC
+# 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
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-altgraph
-Version: 0.17.3
+Version: 0.17.4
Release: 0
Summary: Python graph (network) package
License: MIT
++++++ altgraph-0.17.3.tar.gz -> altgraph-0.17.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/altgraph-0.17.3/PKG-INFO new/altgraph-0.17.4/PKG-INFO
--- old/altgraph-0.17.3/PKG-INFO 2022-09-25 19:41:43.877440500 +0200
+++ new/altgraph-0.17.4/PKG-INFO 2023-09-25 11:04:41.972744700 +0200
@@ -1,14 +1,14 @@
Metadata-Version: 2.1
Name: altgraph
-Version: 0.17.3
+Version: 0.17.4
Summary: Python graph (network) package
Home-page: https://altgraph.readthedocs.io
+Download-URL: http://pypi.python.org/pypi/altgraph
Author: Ronald Oussoren
Author-email: [email protected]
Maintainer: Ronald Oussoren
Maintainer-email: [email protected]
License: MIT
-Download-URL: http://pypi.python.org/pypi/altgraph
Keywords: graph
Platform: any
Classifier: Intended Audience :: Developers
@@ -25,6 +25,7 @@
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
+Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Visualization
@@ -38,12 +39,6 @@
altgraph includes some additional usage of Python 2.6+ features and
enhancements related to modulegraph and macholib.
-CI status
----------
-
-.. image:: https://github.com/ronaldoussoren/altgraph/workflows/Lint/badge.svg
-.. image:: https://github.com/ronaldoussoren/altgraph/workflows/Test/badge.svg
-
Project links
-------------
@@ -293,5 +288,3 @@
- It is now possible to run tests using 'python setup.py test'
(The actual testsuite is still very minimal though)
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/altgraph-0.17.3/README.rst
new/altgraph-0.17.4/README.rst
--- old/altgraph-0.17.3/README.rst 2020-12-30 18:01:12.000000000 +0100
+++ new/altgraph-0.17.4/README.rst 2023-09-25 10:59:43.000000000 +0200
@@ -5,12 +5,6 @@
altgraph includes some additional usage of Python 2.6+ features and
enhancements related to modulegraph and macholib.
-CI status
----------
-
-.. image:: https://github.com/ronaldoussoren/altgraph/workflows/Lint/badge.svg
-.. image:: https://github.com/ronaldoussoren/altgraph/workflows/Test/badge.svg
-
Project links
-------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/altgraph-0.17.3/altgraph/Dot.py
new/altgraph-0.17.4/altgraph/Dot.py
--- old/altgraph-0.17.3/altgraph/Dot.py 2020-12-30 18:01:12.000000000 +0100
+++ new/altgraph-0.17.4/altgraph/Dot.py 2023-09-25 11:01:37.000000000 +0200
@@ -286,7 +286,7 @@
"""
if not file_name:
- warnings.warn(DeprecationWarning, "always pass a file_name")
+ warnings.warn(DeprecationWarning, "always pass a file_name",
stacklevel=2)
file_name = self.temp_dot
with open(file_name, "w") as fp:
@@ -299,7 +299,7 @@
"""
if not file_name:
- warnings.warn(DeprecationWarning, "always pass a file_name")
+ warnings.warn(DeprecationWarning, "always pass a file_name",
stacklevel=2)
file_name = "out"
if mode == "neato":
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/altgraph-0.17.3/altgraph/GraphStat.py
new/altgraph-0.17.4/altgraph/GraphStat.py
--- old/altgraph-0.17.3/altgraph/GraphStat.py 2020-12-30 18:01:12.000000000
+0100
+++ new/altgraph-0.17.4/altgraph/GraphStat.py 2023-09-25 11:01:16.000000000
+0200
@@ -34,7 +34,7 @@
return results
-_EPS = 1.0 / (2.0 ** 32)
+_EPS = 1.0 / (2.0**32)
def _binning(values, limits=(0, 0), bin_num=10):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/altgraph-0.17.3/altgraph.egg-info/PKG-INFO
new/altgraph-0.17.4/altgraph.egg-info/PKG-INFO
--- old/altgraph-0.17.3/altgraph.egg-info/PKG-INFO 2022-09-25
19:41:43.000000000 +0200
+++ new/altgraph-0.17.4/altgraph.egg-info/PKG-INFO 2023-09-25
11:04:41.000000000 +0200
@@ -1,14 +1,14 @@
Metadata-Version: 2.1
Name: altgraph
-Version: 0.17.3
+Version: 0.17.4
Summary: Python graph (network) package
Home-page: https://altgraph.readthedocs.io
+Download-URL: http://pypi.python.org/pypi/altgraph
Author: Ronald Oussoren
Author-email: [email protected]
Maintainer: Ronald Oussoren
Maintainer-email: [email protected]
License: MIT
-Download-URL: http://pypi.python.org/pypi/altgraph
Keywords: graph
Platform: any
Classifier: Intended Audience :: Developers
@@ -25,6 +25,7 @@
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
+Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Visualization
@@ -41,12 +42,6 @@
altgraph includes some additional usage of Python 2.6+ features and
enhancements related to modulegraph and macholib.
-CI status
----------
-
-.. image:: https://github.com/ronaldoussoren/altgraph/workflows/Lint/badge.svg
-.. image:: https://github.com/ronaldoussoren/altgraph/workflows/Test/badge.svg
-
Project links
-------------
@@ -296,5 +291,3 @@
- It is now possible to run tests using 'python setup.py test'
(The actual testsuite is still very minimal though)
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/altgraph-0.17.3/altgraph_tests/test_graphstat.py
new/altgraph-0.17.4/altgraph_tests/test_graphstat.py
--- old/altgraph-0.17.3/altgraph_tests/test_graphstat.py 2020-12-30
18:01:12.000000000 +0100
+++ new/altgraph-0.17.4/altgraph_tests/test_graphstat.py 2023-09-25
11:01:16.000000000 +0200
@@ -37,7 +37,6 @@
class TestBinning(unittest.TestCase):
def test_simple(self):
-
# Binning [0, 100) into 10 bins
a = list(range(100))
out = GraphStat._binning(a, limits=(0, 100), bin_num=10)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/altgraph-0.17.3/doc/conf.py
new/altgraph-0.17.4/doc/conf.py
--- old/altgraph-0.17.3/doc/conf.py 2020-12-30 18:01:12.000000000 +0100
+++ new/altgraph-0.17.4/doc/conf.py 2023-09-25 11:01:16.000000000 +0200
@@ -50,8 +50,8 @@
master_doc = "index"
# General information about the project.
-project = u"altgraph"
-copyright = u"2010-2011, Ronald Oussoren, Bob Ippolito, 2004 Istvan Albert"
+project = "altgraph"
+copyright = "2010-2011, Ronald Oussoren, Bob Ippolito, 2004 Istvan Albert"
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -185,7 +185,7 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass
[howto/manual]).
latex_documents = [
- ("index", "altgraph.tex", u"altgraph Documentation", u"Ronald Oussoren",
"manual")
+ ("index", "altgraph.tex", "altgraph Documentation", "Ronald Oussoren",
"manual")
]
# The name of an image file (relative to this directory) to place at the top of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/altgraph-0.17.3/setup.cfg
new/altgraph-0.17.4/setup.cfg
--- old/altgraph-0.17.3/setup.cfg 2022-09-25 19:41:43.877749700 +0200
+++ new/altgraph-0.17.4/setup.cfg 2023-09-25 11:04:41.973002700 +0200
@@ -1,6 +1,6 @@
[x-metadata]
name = altgraph
-version = 0.17.3
+version = 0.17.4
description = Python graph (network) package
long_description_file =
README.rst
@@ -27,6 +27,7 @@
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
+ Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Visualization
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/altgraph-0.17.3/tox.ini new/altgraph-0.17.4/tox.ini
--- old/altgraph-0.17.3/tox.ini 2022-09-25 19:39:48.000000000 +0200
+++ new/altgraph-0.17.4/tox.ini 2023-09-25 10:59:12.000000000 +0200
@@ -1,5 +1,5 @@
[tox]
-envlist = isort,black,py27,py37,py38,py39,py310,py311,flake8,coverage-report
+envlist = py27,py37,py38,py39,py310,py311,py312,flake8,coverage-report
[testenv]
commands = {envbindir}/python -m coverage run --parallel setup.py test