diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d9c7979..98b4d79b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,13 +18,7 @@ jobs: os: [Ubuntu] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] sphinx-version: - [ - "sphinx==5.0", - "sphinx==5.3", - "sphinx==6.0", - "sphinx==6.2", - "sphinx>=7.0", - ] + ["sphinx==6.0", "sphinx==6.2", "sphinx==7.0", "sphinx>=7.2"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 2ce34f74..7742516d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,8 +26,7 @@ classifiers = [ 'Programming Language :: Python :: 3.12', ] dependencies = [ - 'sphinx>=5', - 'Jinja2>=2.10', + 'sphinx>=6', 'tabulate>=0.8.10', "tomli>=1.1.0;python_version<'3.11'", ] diff --git a/requirements/default.txt b/requirements/default.txt index 1b80561c..5a1986a1 100644 --- a/requirements/default.txt +++ b/requirements/default.txt @@ -1,6 +1,5 @@ # Generated via tools/generate_requirements.py and pre-commit hook. # Do not edit this file; modify pyproject.toml instead. -sphinx>=5 -Jinja2>=2.10 +sphinx>=6 tabulate>=0.8.10 tomli>=1.1.0;python_version<'3.11'