Skip to content

Commit 3bab12d

Browse files
authored
MAINT: adding new python versions to testing (#216)
1 parent 2112f92 commit 3bab12d

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ["3.9", "3.10", "3.11", "3.12"]
23+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2424

2525
steps:
2626
- uses: actions/checkout@v2
@@ -60,10 +60,10 @@ jobs:
6060
steps:
6161
- name: Checkout source
6262
uses: actions/checkout@v2
63-
- name: Set up Python 3.7
63+
- name: Set up Python 3.12
6464
uses: actions/setup-python@v1
6565
with:
66-
python-version: 3.7
66+
python-version: 3.12
6767
- name: Build package
6868
run: |
6969
pip install wheel

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
# then run `tox` or `tox -- {pytest args}`
55
# run in parallel using `tox -p`
66
[tox]
7-
envlist = py{36,37,38}-sphinx{2,3,4},docs
7+
envlist = py{311,312,313,314}-sphinx{7,8,9},docs
88

9-
[testenv:py{36,37,38}-sphinx{2,3,4}]
9+
[testenv:py{311,312,313,314}-sphinx{7,8,9}]
1010
extras = testing
1111
deps =
12-
sphinx2: sphinx>=2,<3
13-
sphinx3: sphinx>=3,<4
14-
sphinx4: sphinx>=4,<5
12+
sphinx7: sphinx>=7,<8
13+
sphinx8: sphinx>=8,<9
14+
sphinx9: sphinx>=9,<10
1515
recreate = false
1616
commands = pytest {posargs}
1717

0 commit comments

Comments
 (0)