Skip to content

Commit

Permalink
Merge pull request #1351 from jeanas/requirements
Browse files Browse the repository at this point in the history
Bump requirements
  • Loading branch information
pradyunsg committed Nov 5, 2023
2 parents 588c8cd + 45d0b24 commit 7f11a7e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sphinx==4.5.0
sphinx==7.2.6
sphinx-autobuild==2021.3.14
sphinx-inline-tabs==2021.4.11b9
sphinx-inline-tabs==2023.4.21
python-docs-theme==2023.9
sphinx-copybutton==0.5.0
sphinx-copybutton==0.5.2
pypa-docs-theme @ git+https://github.com/pypa/pypa-docs-theme.git
sphinx-toolbox==3.5.0
12 changes: 6 additions & 6 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = 'en'

locale_dirs = ['../locales']

Expand Down Expand Up @@ -379,11 +379,11 @@

# -- Options for extlinks extension ---------------------------------------
extlinks = {
'issue': (f'{github_repo_issues_url}/%s', '#'), # noqa: WPS323
'pr': (f'{github_repo_url}/pull/%s', 'PR #'), # noqa: WPS323
'commit': (f'{github_repo_url}/commit/%s', ''), # noqa: WPS323
'gh': (f'{github_url}/%s', 'GitHub: '), # noqa: WPS323
'user': (f'{github_sponsors_url}/%s', '@'), # noqa: WPS323
'issue': (f'{github_repo_issues_url}/%s', '#%s'), # noqa: WPS323
'pr': (f'{github_repo_url}/pull/%s', 'PR #%s'), # noqa: WPS323
'commit': (f'{github_repo_url}/commit/%s', '%s'), # noqa: WPS323
'gh': (f'{github_url}/%s', 'GitHub: %s'), # noqa: WPS323
'user': (f'{github_sponsors_url}/%s', '@%s'), # noqa: WPS323
}

linkcheck_ignore = [
Expand Down
4 changes: 2 additions & 2 deletions source/guides/distributing-packages-using-setuptools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ development as a whole. For example, it does not provide guidance or tool
recommendations for version control, documentation, or testing.

For more reference material, see :std:doc:`Building and Distributing
Packages <userguide/index>` in the :ref:`setuptools` docs, but note
Packages <setuptools:userguide/index>` in the :ref:`setuptools` docs, but note
that some advisory content there may be outdated. In the event of
conflicts, prefer the advice in the Python Packaging User Guide.

Expand Down Expand Up @@ -717,7 +717,7 @@ Lastly, if you don't want to install any dependencies at all, you can run:
For more information, see the
:doc:`Development Mode <setuptools:userguide/development_mode>` section
of the :doc:`setuptools docs <setuptools>`.
of the :ref:`setuptools` docs.

.. _`Packaging your project`:

Expand Down
2 changes: 1 addition & 1 deletion source/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Python's native packaging is mostly built for distributing reusable
code, called libraries, between developers. You can piggyback
**tools**, or basic applications for developers, on top of Python's
library packaging, using technologies like
:doc:`setuptools entry_points <userguide/entry_point>`.
:doc:`setuptools entry_points <setuptools:userguide/entry_point>`.

Libraries are building blocks, not complete applications. For
distributing applications, there's a whole new world of technologies
Expand Down

0 comments on commit 7f11a7e

Please sign in to comment.