Skip to content

Commit

Permalink
📚 DOCS: Fix broken URL link (#5247)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell authored Dec 6, 2021
1 parent 52a9e45 commit 294fa68
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aiida/cmdline/params/types/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def __repr__(self):
class EntryPointType(NonEmptyStringParamType):
"""Parameter whose values have to be valid Python entry point strings.
See https://packaging.python.org/specifications/entry-points/
See https://packaging.python.org/en/latest/specifications/entry-points/
"""
name = 'entrypoint'

Expand Down
2 changes: 1 addition & 1 deletion docs/source/developer_guide/design/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ The plugin system

The plugin system was designed with the following goals in mind.

* **Sharing of calculations, workflows and data types**: plugins are bundled in a python package, distributed as a zip source archive, python ``egg`` or PyPI package. There is extensive documentation available for how to distribute python packages `here <https://packaging.python.org/>`_.
* **Sharing of calculations, workflows and data types**: plugins are bundled in a python package, distributed as a zip source archive, python ``egg`` or PyPI package. There is extensive documentation available for how to distribute python packages `here <https://packaging.python.org/en/latest/>`_.

* **Ease of use**: plugins are listed on the `AiiDA plugin registry <registry>`_ and can be installed with one simple command. This process is familiar to every regular python user.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/howto/plugins_develop.rst
Original file line number Diff line number Diff line change
Expand Up @@ -318,4 +318,4 @@ This makes it possible for users to simply ``pip install aiida-myplugin``.
.. _ghactions: https://github.com/features/actions
.. _registry: https://github.com/aiidateam/aiida-registry
.. _pypi: https://pypi.python.org
.. _packaging: https://packaging.python.org/tutorials/packaging-projects/
.. _packaging: https://packaging.python.org/en/latest/tutorials/packaging-projects/
2 changes: 1 addition & 1 deletion docs/source/topics/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -399,4 +399,4 @@ In particular:
.. _unittest: https://docs.python.org/library/unittest.html
.. _fixture: https://docs.pytest.org/en/latest/fixture.html
.. _click: https://click.palletsprojects.com/
.. _Entry points: https://packaging.python.org/guides/creating-and-discovering-plugins/
.. _Entry points: https://packaging.python.org/en/latest/guides/creating-and-discovering-plugins/

0 comments on commit 294fa68

Please sign in to comment.