Skip to content

Commit

Permalink
Add Sphinx 7 support (#68)
Browse files Browse the repository at this point in the history
* Add Sphinx 7 support

* Bump sphinx_rtd_theme

* Add CHANGELOG entry
  • Loading branch information
DriesSchaumont authored Aug 25, 2023
1 parent 899e381 commit 399f390
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
Changelog
*********

0.5.4 (in development)
0.5.5 (in development)
----------------------

0.5.4 (25/08/2023)
------------------
* Add support for sphinx 7.0 (:pr:`68`)

0.5.3 (15/06/2023)
------------------
* Officially support python 3.11 (by adding it to the tests) (:pr:`59`)
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ setup_requires =
setuptools-scm
setuptools_scm_git_archive
install_requires =
sphinx >= 4.4.0,< 7
sphinx >= 4.4.0,< 8
requests ~= 2.27
packages =
subprojecttoctree

[options.extras_require]
docs =
sphinx_rtd_theme>=1.0,<1.3
sphinx_rtd_theme>=1.0,<1.4
sphinx-issues~=3.0.0
dev =
tox
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
minversion = 3.24.5
isolated_build = True
envlist =
py{3.8,3.9,3.10,3.11}-sphinx{44,45,50,51,52,53}-theme{100,110,120}-sphinxextension{off,on}
py{3.8,3.9,3.10,3.11}-sphinx{44,45,50,51,52,53}-theme{100,110,120,130}-sphinxextension{off,on}
py{3.8,3.9,3.10,3.11}-sphinx{60,61,62}-theme{120}-sphinxextension{off,on}
py{3.8,3.9,3.10,3.11}-sphinx{70,71,72}-theme{130}-sphinxextension{off,on}
docs
flake8

Expand All @@ -18,9 +19,13 @@ deps =
sphinx60: sphinx~=6.0.0
sphinx61: sphinx~=6.1.0
sphinx62: sphinx~=6.2.0
sphinx70: sphinx~=7.0.0
sphinx71: sphinx~=7.1.0
sphinx72: sphinx~=7.2.0
theme100: sphinx_rtd_theme~=1.0.0
theme110: sphinx_rtd_theme~=1.1.0
theme120: sphinx_rtd_theme~=1.2.0
theme130: sphinx_rtd_theme~=1.3.0
sphinxextensionon: readthedocs-sphinx-ext
pytest
pytest-mock
Expand Down

0 comments on commit 399f390

Please sign in to comment.