Hello community,
here is the log from the commit of package python-sphinx-removed-in for
openSUSE:Factory checked in at 2020-03-06 21:29:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinx-removed-in (Old)
and /work/SRC/openSUSE:Factory/.python-sphinx-removed-in.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinx-removed-in"
Fri Mar 6 21:29:26 2020 rev:2 rq:782227 version:0.2.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-sphinx-removed-in/python-sphinx-removed-in.changes
2019-04-02 09:22:04.048698208 +0200
+++
/work/SRC/openSUSE:Factory/.python-sphinx-removed-in.new.26092/python-sphinx-removed-in.changes
2020-03-06 21:33:41.529786551 +0100
@@ -1,0 +2,7 @@
+Fri Mar 6 13:24:35 UTC 2020 - [email protected]
+
+- version update to 0.2.1
+ * re-add sphinx 1.7 compatibility
+- use %pytest macro
+
+-------------------------------------------------------------------
Old:
----
v0.2.0.tar.gz
New:
----
v0.2.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-sphinx-removed-in.spec ++++++
--- /var/tmp/diff_new_pack.BrvY1Y/_old 2020-03-06 21:33:42.001786842 +0100
+++ /var/tmp/diff_new_pack.BrvY1Y/_new 2020-03-06 21:33:42.001786842 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-sphinx-removed-in
#
-# 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,21 +18,21 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-sphinx-removed-in
-Version: 0.2.0
+Version: 0.2.1
Release: 0
Summary: Sphinx directives versionremoved and removed-in
License: BSD-3-Clause
Group: Development/Languages/Python
-Url: https://github.com/MrSenko/sphinx-removed-in
+URL: https://github.com/MrSenko/sphinx-removed-in
Source:
https://github.com/MrSenko/sphinx-removed-in/archive/v%{version}.tar.gz
BuildRequires: %{python_module Sphinx}
+BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module sphinx-testing}
-Requires: python-Sphinx
BuildRequires: fdupes
BuildRequires: python-rpm-macros
+Requires: python-Sphinx
BuildArch: noarch
-
%python_subpackages
%description
@@ -50,7 +50,7 @@
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
-%python_exec -m unittest discover -v
+%pytest
%files %{python_files}
%license LICENSE
++++++ v0.2.0.tar.gz -> v0.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sphinx-removed-in-0.2.0/sphinx_removed_in/__init__.py
new/sphinx-removed-in-0.2.1/sphinx_removed_in/__init__.py
--- old/sphinx-removed-in-0.2.0/sphinx_removed_in/__init__.py 2019-03-15
09:30:47.000000000 +0100
+++ new/sphinx-removed-in-0.2.1/sphinx_removed_in/__init__.py 2019-11-09
22:33:48.000000000 +0100
@@ -1,8 +1,11 @@
-__version__ = '0.2.0'
+__version__ = '0.2.1'
def setup(app):
- from sphinx.domains.changeset import versionlabels
+ try:
+ from sphinx.domains.changeset import versionlabels
+ except ImportError:
+ from sphinx.locale import versionlabels
from sphinx.directives.other import VersionChange
try: