Skip to content

Commit

Permalink
Merge pull request #64 from bsipocz/MAINT_adding_sphinx8
Browse files Browse the repository at this point in the history
MAINT: adding sphinx 8.0.x to the testing matrix
  • Loading branch information
pllim authored Aug 13, 2024
2 parents 23f863f + b74d344 commit ff48db6
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: ".github/workflows" # Location of package manifests
schedule:
interval: "monthly"
groups:
actions:
patterns:
- "*"
7 changes: 5 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,19 @@ jobs:
- os: ubuntu-latest
python-version: "3.11"
toxenv: py311-test-v2deps-sphinx70
- os: ubuntu-latest
python-version: "3.12"
toxenv: py312-test-sphinx80
- os: macos-latest
python-version: "3.11"
toxenv: py311-test-sphinxdev

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{37,38,39,310,311}-test{-v2deps}{-sphinx30,-sphinx35,-sphinx40,-sphinx50,-sphinx60,-sphinx70,-sphinxdev}
py{37,38,39,310,311}-test{-v2deps}{-sphinx30,-sphinx35,-sphinx40,-sphinx50,-sphinx60,-sphinx70,-sphinx80,-sphinxdev}
codestyle
requires =
setuptools >= 30.3.0
Expand All @@ -23,6 +23,7 @@ deps =
sphinx50: sphinx==5.0.*
sphinx60: sphinx==6.0.*
sphinx70: sphinx==7.0.*
sphinx80: sphinx==8.0.*
sphinxdev: git+https://github.com/sphinx-doc/sphinx#egg=sphinx

commands =
Expand Down

0 comments on commit ff48db6

Please sign in to comment.