Skip to content

Commit

Permalink
Fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Jan 6, 2023
1 parent 8bfede7 commit 42baff7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ checkout `conda-build tutorials`_ for further information.

.. _Donald Stufft: https://caremad.io/posts/2013/07/setup-vs-requirement/
.. _install_requires: https://setuptools.pypa.io/en/stable/userguide/dependency_management.html
.. _extras: https://tox.wiki/en/stable/config.html#conf-extras
.. _extras: https://tox.wiki/en/stable/config.html#extras
.. _virtual environment: https://towardsdatascience.com/virtual-environments-104c62d48c54
.. _virtual environments: https://realpython.com/python-virtual-environments-a-primer/
.. _venv: https://docs.python.org/3/library/venv.html
Expand Down
5 changes: 2 additions & 3 deletions docs/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ To read this data in your code, use::
from pkgutil import get_data
data = get_data('my_package', 'path/to/my/data.txt')

Starting from Python 3.7 an even better approach is using `importlib.resources`_::
Starting from Python 3.7 an even better approach is using :ref:`importlib.resources`::

from importlib.resources import read_text, read_binary
data = read_text('my_package.sub_package', 'data.txt')
Expand Down Expand Up @@ -398,7 +398,7 @@ Check out our :ref:`Configuration <default-cfg>` section to get started.
.. _RTD guides: https://docs.readthedocs.io/en/stable/intro/import-guide.html
.. _tox: https://tox.wiki/en/stable/
.. _tox documentation: https://tox.wiki/en/stable/
.. _tox examples: https://tox.wiki/en/stable/examples.html
.. _tox examples: https://tox.wiki/en/latest/faq.html
.. _tox tutorial: https://www.seanh.cc/2018/09/01/tox-tutorial/
.. _semantic versioning: https://semver.org
.. _Numpy and Google style docstrings: https://www.sphinx-doc.org/en/master/usage/extensions/napoleon.html
Expand All @@ -411,7 +411,6 @@ Check out our :ref:`Configuration <default-cfg>` section to get started.
.. _TestPyPI: https://test.pypi.org/
.. _twine: https://twine.readthedocs.io/en/stable/
.. _using TestPyPI: https://packaging.python.org/guides/using-testpypi/
.. _importlib.resources: https://docs.python.org/3/library/importlib.html#module-importlib.resources
.. _importlib_resources: https://importlib-resources.readthedocs.io/en/stable/
.. _flake8: https://flake8.pycqa.org/en/stable/
.. _GitLab CI: https://docs.gitlab.com/ee/ci/
Expand Down
2 changes: 1 addition & 1 deletion docs/updating.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ If using `Sphinx`_ for the documentation, you can also remove the
.. _setuptools-scm: https://pypi.org/project/setuptools-scm/
.. _tox: https://tox.wiki/en/stable/
.. _make: https://www.gnu.org/software/make/manual/html_node/index.html
.. _skip_install: https://tox.wiki/en/stable/config.html#conf-skip_install
.. _skip_install: https://tox.wiki/en/stable/config.html#skip_install
.. _official packaging namespace packages guides: https://packaging.python.org/guides/packaging-namespace-packages/
.. _pkg_resources: https://setuptools.pypa.io/en/stable/pkg_resources.html
.. _Sphinx: https://www.sphinx-doc.org/en/master/
Expand Down

0 comments on commit 42baff7

Please sign in to comment.