Hello community,

here is the log from the commit of package python-sphinx-testing for 
openSUSE:Factory checked in at 2019-05-20 13:17:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinx-testing (Old)
 and      /work/SRC/openSUSE:Factory/.python-sphinx-testing.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-sphinx-testing"

Mon May 20 13:17:59 2019 rev:5 rq:703765 version:1.0.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-sphinx-testing/python-sphinx-testing.changes  
    2019-04-01 12:38:28.149917713 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-sphinx-testing.new.5148/python-sphinx-testing.changes
    2019-05-20 13:18:05.383924147 +0200
@@ -1,0 +2,6 @@
+Fri May 17 18:37:24 UTC 2019 - Hardik Italia <hita...@suse.com>
+
+- updte to 1.0.1
+  * Support Sphinx-2.0.1
+
+-------------------------------------------------------------------

Old:
----
  sphinx-testing-1.0.0.tar.gz

New:
----
  sphinx-testing-1.0.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-sphinx-testing.spec ++++++
--- /var/tmp/diff_new_pack.72MtA9/_old  2019-05-20 13:18:06.095923776 +0200
+++ /var/tmp/diff_new_pack.72MtA9/_new  2019-05-20 13:18:06.095923776 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-sphinx-testing
-Version:        1.0.0
+Version:        1.0.1
 Release:        0
 Summary:        Testing utility classes and functions for Sphinx extensions
 License:        BSD-2-Clause

++++++ sphinx-testing-1.0.0.tar.gz -> sphinx-testing-1.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sphinx-testing-1.0.0/CHANGES.rst 
new/sphinx-testing-1.0.1/CHANGES.rst
--- old/sphinx-testing-1.0.0/CHANGES.rst        2019-01-27 04:00:52.000000000 
+0100
+++ new/sphinx-testing-1.0.1/CHANGES.rst        2019-04-15 16:51:07.000000000 
+0200
@@ -1,6 +1,10 @@
 Changelog
 ==========
 
+1.0.1 (2019-04-15)
+-------------------
+- Support Sphinx-2.0.1
+
 1.0.0 (2019-01-27)
 -------------------
 - Support Sphinx-2.0 (unreleased yet)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sphinx-testing-1.0.0/PKG-INFO 
new/sphinx-testing-1.0.1/PKG-INFO
--- old/sphinx-testing-1.0.0/PKG-INFO   2019-01-27 05:16:24.000000000 +0100
+++ new/sphinx-testing-1.0.1/PKG-INFO   2019-04-15 16:51:44.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: sphinx-testing
-Version: 1.0.0
+Version: 1.0.1
 Summary: testing utility classes and functions for Sphinx extensions
 Home-page: https://github.com/sphinx-doc/sphinx-testing
 Author: Takeshi Komiya
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sphinx-testing-1.0.0/setup.py 
new/sphinx-testing-1.0.1/setup.py
--- old/sphinx-testing-1.0.0/setup.py   2019-01-27 04:01:35.000000000 +0100
+++ new/sphinx-testing-1.0.1/setup.py   2019-04-15 16:51:18.000000000 +0200
@@ -36,7 +36,7 @@
 
 setup(
     name='sphinx-testing',
-    version='1.0.0',
+    version='1.0.1',
     description=description,
     long_description=description,
     classifiers=classifiers,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sphinx-testing-1.0.0/src/sphinx_testing/util.py 
new/sphinx-testing-1.0.1/src/sphinx_testing/util.py
--- old/sphinx-testing-1.0.0/src/sphinx_testing/util.py 2019-01-27 
03:51:04.000000000 +0100
+++ new/sphinx-testing-1.0.1/src/sphinx_testing/util.py 2019-04-15 
16:49:20.000000000 +0200
@@ -84,8 +84,13 @@
         if warning is None:
             warning = StringIO()
 
+        # unwrap ModuleWrapper (deprecated_alias)
+        application = sphinx.application
+        while hasattr(application, '_module'):
+            application = application._module
+
         try:
-            sphinx.application.abspath = lambda x: x
+            application.abspath = lambda x: x
             if sphinx_version < '1.3':
                 Sphinx.__init__(self, srcdir, confdir, outdir, doctreedir,
                                 buildername, confoverrides, status,
@@ -96,7 +101,7 @@
                                 warning, freshenv, warningiserror, tags,
                                 verbosity, parallel)
         finally:
-            sphinx.application.abspath = os.path.abspath
+            application.abspath = os.path.abspath
 
     def __repr__(self):
         classname = self.__class__.__name__
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sphinx-testing-1.0.0/src/sphinx_testing.egg-info/PKG-INFO 
new/sphinx-testing-1.0.1/src/sphinx_testing.egg-info/PKG-INFO
--- old/sphinx-testing-1.0.0/src/sphinx_testing.egg-info/PKG-INFO       
2019-01-27 05:16:23.000000000 +0100
+++ new/sphinx-testing-1.0.1/src/sphinx_testing.egg-info/PKG-INFO       
2019-04-15 16:51:43.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: sphinx-testing
-Version: 1.0.0
+Version: 1.0.1
 Summary: testing utility classes and functions for Sphinx extensions
 Home-page: https://github.com/sphinx-doc/sphinx-testing
 Author: Takeshi Komiya


Reply via email to