Skip to content

Commit

Permalink
✏️ Fix external links
Browse files Browse the repository at this point in the history
  • Loading branch information
veit committed Oct 27, 2024
1 parent b0a31e4 commit 0589fe6
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/document/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ look at the source code of this page by following the link `Sources
Originally, Sphinx was developed for the documentation of Python and is now
used in almost all Python projects, including `NumPy and SciPy
<https://docs.scipy.org/doc/>`_, `Matplotlib
<https://matplotlib.org/users/index.html>`_, `Pandas
<https://matplotlib.org/stable/users/index.html>`_, `Pandas
<https://pandas.pydata.org/docs/>`_ and `SQLAlchemy
<https://docs.sqlalchemy.org/>`_.

Expand Down
4 changes: 2 additions & 2 deletions docs/document/test.rst
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ Vale is used by many open source projects, including

* GitLab (`.vale.ini
<https://gitlab.com/gitlab-org/gitlab/blob/master/.vale.ini>`_, `rules
<https://gitlab.com/gitlab-org/gitlab/-/tree/master/doc/.vale/gitlab>`__)
<https://gitlab.com/gitlab-org/gitlab/-/tree/master/doc/.vale/gitlab_base>`__)
* Homebrew (`.vale.ini
<https://github.com/Homebrew/brew/blob/master/.vale.ini>`__, `rules
<https://github.com/Homebrew/brew/tree/master/docs/vale-styles/Homebrew>`__)
Expand All @@ -230,7 +230,7 @@ The following styles come with Vale itself:

`Microsoft <https://github.com/errata-ai/Microsoft>`_
An implementation of the `Microsoft Writing Style Guide
<https://docs.microsoft.com/en-us/style-guide/welcome/>`__.
<https://learn.microsoft.com/en-us/style-guide/welcome/>`__.
`Google <https://github.com/errata-ai/Google>`_
An implementation of the style guide for the `Google developer
documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/libs/binary-extensions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ significantly reduce the maintenance effort compared to wrapper modules.
be wrapped by hand, it is not a good choice when wrapping large APIs.

* `cffi <https://cffi.readthedocs.io/>`_ is the project of some `PyPy
<https://www.pypy.org/>`__ developers to give developers who already know both
<https://pypy.org>`__ developers to give developers who already know both
Python and C the possibility to make their C modules available for Python
applications. It makes wrapping a C module based on its header files
relatively easy, even if you are not familiar with C itself.
Expand Down
4 changes: 2 additions & 2 deletions docs/libs/cibuildwheel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Finally, the tests can also run against the wheels.

.. seealso::
* `release
<https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#release>`_
<https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#release>`_

Now the :term:`wheels <wheel>` can be built with:

Expand All @@ -60,7 +60,7 @@ Finally, the tests can also run against the wheels.

.. seealso::
* `Workflow syntax for GitHub Actions
<https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions>`_
<https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions>`_

Now you can finally upload the artefacts of both jobs to the :term:`PyPI`:

Expand Down
4 changes: 2 additions & 2 deletions docs/libs/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Glossary

conda
Package management tool for the `Anaconda
<https://docs.continuum.io/anaconda/index.html>`_ distribution from
<https://docs.anaconda.com/anaconda/index.html>`_ distribution from
`Continuum Analytics <https://www.anaconda.com/>`_. It’s specifically
aimed at the scientific community, particularly Windows, where installing
binary extensions is often difficult.
Expand Down Expand Up @@ -128,7 +128,7 @@ Glossary
system. It supports a variety of languages, including C, and is able to
meet the requirements of most complex build configurations.

`Docs <https://meson-python.readthedocs.io/en/latest/>`__ |
`Docs <https://mesonbuild.com/meson-python/>`__ |
`GitHub <https://github.com/mesonbuild/meson-python>`__ |
`PyPI <https://pypi.org/project/meson-python/>`__

Expand Down
2 changes: 1 addition & 1 deletion docs/libs/templating/templates.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Python
<https://github.com/PyCQA/isort>`_ etc.
`cookiecutter-python-cli <https://github.com/seanluong/cookiecutter-python-cli>`_
Template for creating a Python CLI application with `Click
<https://click.palletsprojects.com/>`_
<https://click.palletsprojects.com/en/stable/>`_
`widget-cookiecutter <https://github.com/jupyter-widgets/widget-cookiecutter>`_
Template for creating Jupyter widgets

Expand Down
6 changes: 3 additions & 3 deletions docs/test/tox.rst
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ of environments are available for GitHub actions:

The actions syntax is well documented. A good starting point in the GitHub
Actions documentation is the `Building and Testing Python
<https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python>`_
<https://docs.github.com/en/actions/use-cases-and-examples/building-and-testing/building-and-testing-python>`__
page. The documentation also shows you how to run pytest directly without tox and
how to extend the matrix to multiple operating systems. As soon as you have set
up your :file:`*.yml` file and uploaded it to your GitHub repository, it will be
Expand All @@ -512,9 +512,9 @@ screenshot:

.. seealso::
* `Building and testing Python
<https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python>`_
<https://docs.github.com/en/actions/use-cases-and-examples/building-and-testing/building-and-testing-python>`__
* `Workflow syntax for GitHub Actions
<https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions>`_
<https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions>`_

Display badge
-------------
Expand Down

0 comments on commit 0589fe6

Please sign in to comment.