1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-13 11:19:50 +03:00
aports/testing/py3-sphinx-theme-quark/tinycss.patch
Natanael Copa ecd8172140 testing/py3-sphinx-theme-quark: fix build with python 3.9
seems like tinycss is dead upstream but tinycss2 seems to work
2021-04-05 18:19:36 +00:00

13 lines
401 B
Diff

diff --git a/setup.py b/setup.py
index 6bf1104..732809f 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ sys.path.insert(0, os.path.join(dist_dir, 'src', 'quark_sphinx_theme'))
from __version__ import __version__ # noqa
del sys.path[0]
-tests_require = ['html5lib', 'tinycss']
+tests_require = ['html5lib', 'tinycss2']
if sys.version_info[:2] < (3, 3):
tests_require.append('mock')