Skip to content

Commit b476ed8

Browse files
Fix broken link (#593)
I noticed the link-checker to failed (see [here](https://github.com/UCL-ARC/python-tooling/actions/runs/18410874282/job/54005605441)). ``` * [404] <https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/> | Rejected status code (this depends on your "accept" configuration): Not Found ``` This PR replaces the link with a link to `https://packaging.python.org/en/latest/guides/writing-pyproject-toml/`, which fits the description in the documentation. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 40a21e9 commit b476ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/pages/packaging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ a higher-level package which is effectively the same, but much easier to reuse.
4545

4646
| Name | Short description | 🚦 |
4747
| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------- |
48-
| [pyproject.toml](https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/) | Contains build system requirements and information, which are used by pip to build the package. It is becoming the accepted standard and we strongly recommend it. | <span class="label label-green">Best</span> |
48+
| [pyproject.toml](https://packaging.python.org/en/latest/guides/writing-pyproject-toml/) | Contains build system requirements and information, which are used by pip to build the package. It is becoming the accepted standard and we strongly recommend it. | <span class="label label-green">Best</span> |
4949
| [setup.py](https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/) | Strongly coupled with setuptools and therefore not recommended. | <span class="label label-yellow">Good</span> |
5050
| [setup.cfg](https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/) | An ini file that contains defaults for setup.py commands. | <span class="label label-yellow">Good</span> |
5151

0 commit comments

Comments
 (0)