Skip to content

Commit 3cb54a9

Browse files
authored
Merge pull request #20 from jelmer/python-version
Fix tox.ini and update documented supported python version
2 parents effb75c + 246fc04 commit 3cb54a9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ enterprise applications, or web servers ... let imagination run wild.
2828
Dependencies to build/selftest
2929
==============================
3030

31-
* Python 2.6+ (or 3.3+)
31+
* Python 3.9+
3232
* docutils
3333
* testtools (http://pypi.python.org/pypi/testtools/)
3434
* fixtures (http://pypi.python.org/pypi/fixtures)
3535

3636
Dependencies to use testresources
3737
=================================
3838

39-
* Python 2.6+ (or 3.3+)
39+
* Python 3.9+
4040

4141
For older versions of Python, testresources <= 1.0.0 supported 2.4, 2.5 and
4242
3.2.

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[tox]
2-
envlist = py26,py27,py33,py34
2+
envlist = py39,py310,py311,py312,py313
33

44
[testenv]
55
deps = .[test]
6+
allowlist_externals = rst2html.py
67
commands =
78
python -m testtools.run discover
8-
rst2html.py --strict README /dev/null
9+
rst2html.py --strict README.rst /dev/null

0 commit comments

Comments
 (0)