Skip to content

Commit

Permalink
Fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Nusnus committed Oct 18, 2024
1 parent 9f732b5 commit caf8a52
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 38 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
76 changes: 39 additions & 37 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -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 = {}

Expand Down

0 comments on commit caf8a52

Please sign in to comment.