Hello community,
here is the log from the commit of package python-pipdeptree for
openSUSE:Factory checked in at 2020-08-28 21:20:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pipdeptree (Old)
and /work/SRC/openSUSE:Factory/.python-pipdeptree.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pipdeptree"
Fri Aug 28 21:20:41 2020 rev:2 rq:828008 version:1.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pipdeptree/python-pipdeptree.changes
2019-03-24 14:59:58.347179502 +0100
+++
/work/SRC/openSUSE:Factory/.python-pipdeptree.new.3399/python-pipdeptree.changes
2020-08-28 21:21:40.468333325 +0200
@@ -1,0 +2,6 @@
+Wed Aug 19 15:07:54 UTC 2020 - John Vandenberg <[email protected]>
+
+- Update to v1.0.0
+ * Use pkg_resources vendored with pip
+
+-------------------------------------------------------------------
Old:
----
pipdeptree-0.13.2.tar.gz
New:
----
pipdeptree-1.0.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pipdeptree.spec ++++++
--- /var/tmp/diff_new_pack.U7yGTU/_old 2020-08-28 21:21:41.248333703 +0200
+++ /var/tmp/diff_new_pack.U7yGTU/_new 2020-08-28 21:21:41.252333706 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-pipdeptree
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pipdeptree
-Version: 0.13.2
+Version: 1.0.0
Release: 0
Summary: Command line utility to show dependency tree of packages
License: MIT
@@ -60,7 +60,7 @@
%check
# Two tests fail due to https://github.com/naiquevin/pipdeptree/issues/116
-%python_exec -m pytest -k 'not test_render_tree_exclude and not
test_render_tree_exclude_reverse'
+%pytest --ignore tests/virtualenvs/ -k 'not test_render_tree_exclude and not
test_render_tree_exclude_reverse'
%post
%{python_install_alternative pipdeptree}
++++++ pipdeptree-0.13.2.tar.gz -> pipdeptree-1.0.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pipdeptree-0.13.2/CHANGES.md
new/pipdeptree-1.0.0/CHANGES.md
--- old/pipdeptree-0.13.2/CHANGES.md 2019-01-23 13:34:44.000000000 +0100
+++ new/pipdeptree-1.0.0/CHANGES.md 2020-06-13 07:52:30.000000000 +0200
@@ -1,6 +1,14 @@
Changelog
=========
+1.0.0
+-----
+
+* Use `pkg_resources` vendored with `pip`.
+
+* Besides this, there's no other change in this major version release.
+
+
0.13.2
------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pipdeptree-0.13.2/pipdeptree.py
new/pipdeptree-1.0.0/pipdeptree.py
--- old/pipdeptree-0.13.2/pipdeptree.py 2019-01-23 13:34:44.000000000 +0100
+++ new/pipdeptree-1.0.0/pipdeptree.py 2020-06-13 07:52:30.000000000 +0200
@@ -19,12 +19,12 @@
except ImportError:
from pip import get_installed_distributions, FrozenRequirement
-import pkg_resources
+from pip._vendor import pkg_resources
# inline:
# from graphviz import backend, Digraph
-__version__ = '0.13.2'
+__version__ = '1.0.0'
flatten = chain.from_iterable