Skip to content

Commit

Permalink
Update to sphinx 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
markotoplak committed Sep 20, 2024
1 parent 7cddc64 commit e09d0a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/requirements-rtd.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
--only-binary PyQt5,numpy

setuptools
sphinx~=4.2.0
sphinx~=7.4.7
sphinx-rtd-theme
PyQt5
AnyQt

# sphinx pins docutils version, but the installation in the RTD worker/config
# overrides it because docutils is also in our dependencies.
# https://docs.readthedocs.io/en/stable/faq.html#i-need-to-install-a-package-in-a-environment-with-pinned-versions
-e .
-e .
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = {'.rst': 'restructuredtext'}

# The encoding of source files.
#source_encoding = 'utf-8-sig'
Expand All @@ -73,7 +73,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"

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down Expand Up @@ -296,4 +296,4 @@


# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}

0 comments on commit e09d0a3

Please sign in to comment.