diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 1e96cb1a..0388c8e3 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -32,7 +32,7 @@ meeting or private correspondence. The Code of Conduct is heavily based on the `Ubuntu Code of Conduct`_, and the `Pylons Code of Conduct`_. -.. _`Ubuntu Code of Conduct`: https://www.ubuntu.com/community/conduct +.. _`Ubuntu Code of Conduct`: https://ubuntu.com/community/ethos/code-of-conduct .. _`Pylons Code of Conduct`: https://pylonsproject.org/community-code-of-conduct.html Be considerate diff --git a/docs/conf.py b/docs/conf.py index 43074efc..5d736b10 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,44 +1,46 @@ from sphinx_celery import conf -globals().update( - conf.build_config( - "pytest_celery", - __file__, - project="pytest_celery", - version_dev="1.1", - version_stable="1.0", - canonical_url="https://pytest-celery.readthedocs.io/", - webdomain="pytest-celery.readthedocs.io", - github_project="celery/pytest-celery", - author="Tomer Nosrati", - author_name="Tomer Nosrati", - copyright="2024", - publisher="Celery Project", - html_logo="images/celery_512.png", - html_favicon="images/favicon.ico", - html_prepend_sidebars=["sidebardonations.html"], - extra_extensions=[ - "sphinx_click", - "sphinx.ext.napoleon", - "celery.contrib.sphinx", - "sphinxcontrib.mermaid", - ], - apicheck_ignore_modules=[ - r"celery.contrib.*", - ], - linkcheck_ignore=[ - r"^http://localhost", - r"^http://0.0.0.0", - r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#images", - r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#containers", - r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#fixture-wrappers", - r"https://github\.com/celery/celery/blob/main/requirements/test\.txt#L2", - r"https://github\.com/celery/celery/blob/main/tox\.ini#L30", - ], - autodoc_mock_imports=[], - ) +config = conf.build_config( + "pytest_celery", + __file__, + project="pytest_celery", + version_dev="1.1", + version_stable="1.0", + canonical_url="https://pytest-celery.readthedocs.io/", + webdomain="pytest-celery.readthedocs.io", + github_project="celery/pytest-celery", + author="Tomer Nosrati", + author_name="Tomer Nosrati", + copyright="2024", + publisher="Celery Project", + html_logo="images/celery_512.png", + html_favicon="images/favicon.ico", + html_prepend_sidebars=["sidebardonations.html"], + extra_extensions=[ + "sphinx_click", + "sphinx.ext.napoleon", + "celery.contrib.sphinx", + "sphinxcontrib.mermaid", + ], + apicheck_ignore_modules=[ + r"celery.contrib.*", + ], + linkcheck_ignore=[ + r"^http://localhost", + r"^http://0.0.0.0", + r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#images", + r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#containers", + r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#fixture-wrappers", + r"https://github\.com/celery/celery/blob/main/requirements/test\.txt#L2", + r"https://github\.com/celery/celery/blob/main/tox\.ini#L30", + ], + autodoc_mock_imports=[], ) +del config["intersphinx_mapping"]["eventlet"] + +globals().update(config) + settings = {} ignored_settings = {}