Skip to content

Commit 1c4a205

Browse files
committed
Fixed lint issues
1 parent 9f732b5 commit 1c4a205

File tree

3 files changed

+41
-39
lines changed

3 files changed

+41
-39
lines changed

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ meeting or private correspondence.
3232
The Code of Conduct is heavily based on the `Ubuntu Code of Conduct`_, and
3333
the `Pylons Code of Conduct`_.
3434

35-
.. _`Ubuntu Code of Conduct`: https://www.ubuntu.com/community/conduct
35+
.. _`Ubuntu Code of Conduct`: https://ubuntu.com/community/ethos/code-of-conduct
3636
.. _`Pylons Code of Conduct`: https://pylonsproject.org/community-code-of-conduct.html
3737

3838
Be considerate

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ the new BSD license). The license is an OSI approved Open Source
55
license and is GPL-compatible(1).
66

77
The license text can also be found here:
8-
https://www.opensource.org/licenses/BSD-3-Clause
8+
https://opensource.org/license/BSD-3-Clause
99

1010

1111
License

docs/conf.py

Lines changed: 39 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,46 @@
11
from sphinx_celery import conf
22

3-
globals().update(
4-
conf.build_config(
5-
"pytest_celery",
6-
__file__,
7-
project="pytest_celery",
8-
version_dev="1.1",
9-
version_stable="1.0",
10-
canonical_url="https://pytest-celery.readthedocs.io/",
11-
webdomain="pytest-celery.readthedocs.io",
12-
github_project="celery/pytest-celery",
13-
author="Tomer Nosrati",
14-
author_name="Tomer Nosrati",
15-
copyright="2024",
16-
publisher="Celery Project",
17-
html_logo="images/celery_512.png",
18-
html_favicon="images/favicon.ico",
19-
html_prepend_sidebars=["sidebardonations.html"],
20-
extra_extensions=[
21-
"sphinx_click",
22-
"sphinx.ext.napoleon",
23-
"celery.contrib.sphinx",
24-
"sphinxcontrib.mermaid",
25-
],
26-
apicheck_ignore_modules=[
27-
r"celery.contrib.*",
28-
],
29-
linkcheck_ignore=[
30-
r"^http://localhost",
31-
r"^http://0.0.0.0",
32-
r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#images",
33-
r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#containers",
34-
r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#fixture-wrappers",
35-
r"https://github\.com/celery/celery/blob/main/requirements/test\.txt#L2",
36-
r"https://github\.com/celery/celery/blob/main/tox\.ini#L30",
37-
],
38-
autodoc_mock_imports=[],
39-
)
3+
config = conf.build_config(
4+
"pytest_celery",
5+
__file__,
6+
project="pytest_celery",
7+
version_dev="1.1",
8+
version_stable="1.0",
9+
canonical_url="https://pytest-celery.readthedocs.io/",
10+
webdomain="pytest-celery.readthedocs.io",
11+
github_project="celery/pytest-celery",
12+
author="Tomer Nosrati",
13+
author_name="Tomer Nosrati",
14+
copyright="2024",
15+
publisher="Celery Project",
16+
html_logo="images/celery_512.png",
17+
html_favicon="images/favicon.ico",
18+
html_prepend_sidebars=["sidebardonations.html"],
19+
extra_extensions=[
20+
"sphinx_click",
21+
"sphinx.ext.napoleon",
22+
"celery.contrib.sphinx",
23+
"sphinxcontrib.mermaid",
24+
],
25+
apicheck_ignore_modules=[
26+
r"celery.contrib.*",
27+
],
28+
linkcheck_ignore=[
29+
r"^http://localhost",
30+
r"^http://0.0.0.0",
31+
r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#images",
32+
r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#containers",
33+
r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#fixture-wrappers",
34+
r"https://github\.com/celery/celery/blob/main/requirements/test\.txt#L2",
35+
r"https://github\.com/celery/celery/blob/main/tox\.ini#L30",
36+
],
37+
autodoc_mock_imports=[],
4038
)
4139

40+
del config["intersphinx_mapping"]["eventlet"]
41+
42+
globals().update(config)
43+
4244
settings = {}
4345
ignored_settings = {}
4446

0 commit comments

Comments
 (0)