docs: Require Pykka for docs building (fixes #1500)
Pykka is a pure Python dependency, so we might as well depend on it for docs building so that :autoclass: works on Pykka subclasses in the docs.
This commit is contained in:
parent
12e0c87c99
commit
0d16502da1
@ -49,6 +49,11 @@ Bug fix release.
|
|||||||
- Stream: Fix milliseconds vs seconds mistake in timeout handling.
|
- Stream: Fix milliseconds vs seconds mistake in timeout handling.
|
||||||
(Fixes: :issue:`1521`, PR: :issue:`1522`)
|
(Fixes: :issue:`1521`, PR: :issue:`1522`)
|
||||||
|
|
||||||
|
- Docs: Fix the rendering of :class:`mopidy.core.Core` and
|
||||||
|
:class:`mopidy.audio.Audio` docs. This should also contribute towards making
|
||||||
|
the Mopidy Debian package build bit-by-bit reproducible. (Fixes:
|
||||||
|
:issue:`1500`)
|
||||||
|
|
||||||
|
|
||||||
v2.0.0 (2016-02-15)
|
v2.0.0 (2016-02-15)
|
||||||
===================
|
===================
|
||||||
|
|||||||
@ -40,7 +40,6 @@ MOCK_MODULES = [
|
|||||||
'dbus.mainloop.glib',
|
'dbus.mainloop.glib',
|
||||||
'dbus.service',
|
'dbus.service',
|
||||||
'mopidy.internal.gi',
|
'mopidy.internal.gi',
|
||||||
'pykka',
|
|
||||||
]
|
]
|
||||||
for mod_name in MOCK_MODULES:
|
for mod_name in MOCK_MODULES:
|
||||||
sys.modules[mod_name] = Mock()
|
sys.modules[mod_name] = Mock()
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
Sphinx >= 1.0
|
Sphinx >= 1.0
|
||||||
sphinx_rtd_theme
|
|
||||||
pygraphviz
|
pygraphviz
|
||||||
|
Pykka >= 1.1
|
||||||
|
sphinx_rtd_theme
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user