Skip to content

Commit

Permalink
Add support for sphinx 6.0. (#63)
Browse files Browse the repository at this point in the history
* Add support for sphinx 6.0

* Fix failed merge

* Update CHANGELOG
  • Loading branch information
DriesSchaumont authored Jun 15, 2023
1 parent 85279d3 commit a80138e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Changelog
0.5.3 (in development)
----------------------
* Officially support python 3.11 (by adding it to the tests) (:pr:`59`)
* Add support for sphinx 6.0 (:pr:`63`)

0.5.2 (12/11/2022)
------------------
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, < 5.4.0
sphinx >= 4.4.0,< 7
requests ~= 2.27
packages =
subprojecttoctree

[options.extras_require]
docs =
sphinx_rtd_theme>=1.0,<1.2
sphinx_rtd_theme>=1.0,<1.3
sphinx-issues~=3.0.0
dev =
tox
Expand Down
11 changes: 9 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[tox]
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}-sphinxextension{off,on},docs,flake8

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{60,61,62}-theme{120}-sphinxextension{off,on}
docs
flake8

[testenv]
deps =
Expand All @@ -12,8 +15,12 @@ deps =
sphinx51: sphinx~=5.1.0
sphinx52: sphinx~=5.2.0
sphinx53: sphinx~=5.3.0
sphinx60: sphinx~=6.0.0
sphinx61: sphinx~=6.1.0
sphinx62: sphinx~=6.2.0
theme100: sphinx_rtd_theme~=1.0.0
theme110: sphinx_rtd_theme~=1.1.0
theme120: sphinx_rtd_theme~=1.2.0
sphinxextensionon: readthedocs-sphinx-ext
pytest
pytest-mock
Expand Down

0 comments on commit a80138e

Please sign in to comment.