forked from pool/python-sphinxcontrib-websupport
Dirk Mueller
471c1c9489
- do not require six
- added patches
fix a249f8f962
+ python-sphinxcontrib-websupport-no-six.patch
OBS-URL: https://build.opensuse.org/request/show/1077667
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinxcontrib-websupport?expand=0&rev=32
15 lines
455 B
Diff
15 lines
455 B
Diff
Index: sphinxcontrib-websupport-1.2.4/tests/test_searchadapters.py
|
|
===================================================================
|
|
--- sphinxcontrib-websupport-1.2.4.orig/tests/test_searchadapters.py
|
|
+++ sphinxcontrib-websupport-1.2.4/tests/test_searchadapters.py
|
|
@@ -9,7 +9,8 @@
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
-from six import StringIO
|
|
+from io import StringIO
|
|
+
|
|
import pytest
|
|
|
|
from sphinxcontrib.websupport import WebSupport
|