Skip to content

Commit d8a2306

Browse files
committed
Update packaging documentation URL
1 parent 010e889 commit d8a2306

13 files changed

+13
-14
lines changed

seed_intersphinx_mapping/fallback_mapping.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"natsort": "https://natsort.readthedocs.io/en/master/",
1515
"numpy": "https://numpy.org/doc/stable/",
1616
"oauthlib": "https://oauthlib.readthedocs.io/en/latest/",
17-
"packaging": "https://packaging.pypa.io/en/latest/",
17+
"packaging": "https://packaging.pypa.io/en/stable/",
1818
"pandas": "https://pandas.pydata.org/docs/",
1919
"psutil": "https://psutil.readthedocs.io/en/latest/",
2020
"pydash": "https://pydash.readthedocs.io/en/latest/",

tests/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ coverage-pyver-pragma>=0.2.1
44
html5lib>=1.1
55
importlib-metadata>=3.6.0
66
numpy~=1.24.0; python_version >= "3.8"
7-
packaging==21.3
87
pytest>=6.0.0
98
pytest-cov>=2.8.1
109
pytest-datafiles>=2.0

tests/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_integration(the_app):
2525

2626
assert the_app.env.config.intersphinx_mapping == {
2727
"domdf-python-tools": ("domdf-python-tools", (domdf_python_tools_url, (None, ))),
28-
"packaging": ("packaging", ("https://packaging.pypa.io/en/latest/", (None, ))),
28+
"packaging": ("packaging", ("https://packaging.pypa.io/en/stable/", (None, ))),
2929
"requests": ("requests", ("https://requests.readthedocs.io/en/latest/", (None, ))),
3030
"pandas": ("pandas", ("http://pandas.pydata.org/pandas-docs/stable/", (None, ))),
3131
}

tests/test_seeding.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
expected_mapping_a = {
2323
"domdf-python-tools": ("https://domdf-python-tools.readthedocs.io/en/latest/", None),
2424
"numpy": ("https://numpy.org/doc/1.24/", None),
25-
"packaging": ("https://packaging.pypa.io/en/latest/", None),
25+
"packaging": ("https://packaging.pypa.io/en/stable/", None),
2626
"requests": ("https://requests.readthedocs.io/en/latest/", None),
2727
"slumber": ("https://slumber.readthedocs.io/en/v0.6.0/", None),
2828
"sphinx": ("https://www.sphinx-doc.org/en/3.x/", None),
2929
}
3030
bad_expected_mapping = {
3131
"domdf-python-tools": ("https://domdf-python-tools.readthedocs.io/en/latest/", None),
32-
"packaging": ("https://packaging.pypa.io/en/latest/", None),
32+
"packaging": ("https://packaging.pypa.io/en/stable/", None),
3333
"sphinx": ("https://www.sphinx-doc.org/en/3.x/", None),
3434
}
3535

tests/test_seeding_/test_sphinx_seed_intersphinx_mapping_list_mocked.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ domdf-python-tools:
44
- - null
55
packaging:
66
- packaging
7-
- - https://packaging.pypa.io/en/latest/
7+
- - https://packaging.pypa.io/en/stable/
88
- - null
99
requests:
1010
- requests

tests/test_seeding_/test_sphinx_seed_intersphinx_mapping_mocked_bad_example_requirements_flit_.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ domdf-python-tools:
44
- - null
55
packaging:
66
- packaging
7-
- - https://packaging.pypa.io/en/latest/
7+
- - https://packaging.pypa.io/en/stable/
88
- - null
99
sphinx:
1010
- sphinx

tests/test_seeding_/test_sphinx_seed_intersphinx_mapping_mocked_bad_example_requirements_pyproject_.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ domdf-python-tools:
44
- - null
55
packaging:
66
- packaging
7-
- - https://packaging.pypa.io/en/latest/
7+
- - https://packaging.pypa.io/en/stable/
88
- - null
99
sphinx:
1010
- sphinx

tests/test_seeding_/test_sphinx_seed_intersphinx_mapping_mocked_bad_example_requirements_pyproject_toml_.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ domdf-python-tools:
44
- - null
55
packaging:
66
- packaging
7-
- - https://packaging.pypa.io/en/latest/
7+
- - https://packaging.pypa.io/en/stable/
88
- - null
99
sphinx:
1010
- sphinx

tests/test_seeding_/test_sphinx_seed_intersphinx_mapping_mocked_bad_example_requirements_requirements_.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ domdf-python-tools:
44
- - null
55
packaging:
66
- packaging
7-
- - https://packaging.pypa.io/en/latest/
7+
- - https://packaging.pypa.io/en/stable/
88
- - null
99
sphinx:
1010
- sphinx

tests/test_seeding_/test_sphinx_seed_intersphinx_mapping_mocked_example_requirements_a_flit_.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ numpy:
88
- - null
99
packaging:
1010
- packaging
11-
- - https://packaging.pypa.io/en/latest/
11+
- - https://packaging.pypa.io/en/stable/
1212
- - null
1313
requests:
1414
- requests

0 commit comments

Comments
 (0)