Skip to content

Commit

Permalink
Revert increasing minimum Docutils version
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Feb 5, 2022
1 parent b27b00d commit 0ad4475
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -11,16 +11,16 @@ jobs:
include:
- name: py36
python: 3.6
docutils: du16
docutils: du14
- name: py37
python: 3.7
docutils: du16
docutils: du15
- name: py38
python: 3.8
docutils: du17
docutils: du16
- name: py39
python: 3.9
docutils: du18
docutils: du17
coverage: "--cov ./ --cov-append --cov-config setup.cfg"
- name: py310
python: "3.10"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -22,7 +22,7 @@
'sphinxcontrib-qthelp',
'Jinja2>=2.3',
'Pygments>=2.0',
'docutils>=0.16,<0.19',
'docutils>=0.14,<0.19',
'snowballstemmer>=1.1',
'babel>=1.3',
'alabaster>=0.7,<0.8',
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 2.4.0
envlist = docs,flake8,mypy,twine,coverage,py{36,37,38,39,310},du{16,17,18}
envlist = docs,flake8,mypy,twine,coverage,py{36,37,38,39,310},du{14,15,16,17,18}

[testenv]
usedevelop = True
Expand All @@ -16,8 +16,10 @@ passenv =
TERM
description =
py{36,37,38,39,310}: Run unit tests against {envname}.
du{16,17,18}: Run unit tests with the given version of docutils.
du{14,15,16,17,18}: Run unit tests with the given version of docutils.
deps =
du14: docutils==0.14.*
du15: docutils==0.15.*
du16: docutils==0.16.*
du17: docutils==0.17.*
du18: docutils==0.18.*
Expand Down

0 comments on commit 0ad4475

Please sign in to comment.