mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-22 15:13:50 -06:00
e547119342
ReadTheDocs somehow caches requirements and insists in using old version of Sphinx (1.8). We have to force using newer one (4.5) Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com>
21 lines
542 B
Python
21 lines
542 B
Python
#
|
|
# Copyright (C) 2020 FreeIPA Contributors see COPYING for license
|
|
#
|
|
"""Sphinx documentation plugins for IPA
|
|
"""
|
|
from os.path import abspath, dirname
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
# include ../ for ipasetup.py
|
|
sys.path.append(dirname(dirname(abspath(__file__))))
|
|
from ipasetup import ipasetup # noqa: E402
|
|
|
|
ipasetup(
|
|
name="ipasphinx",
|
|
doc=__doc__,
|
|
package_dir={"ipasphinx": ""},
|
|
packages=["ipasphinx"],
|
|
install_requires=["ipaserver", "ipalib", "sphinx > 3.0", "m2r2"],
|
|
)
|