Skip to content

Commit fa80ecd

Browse files
committed
Make subunit 0.0.18 be a hard dependency.
The v2 protocol solves key issues in concurrency and stream handling. Users that cannot use subunit v2 can run an older testrepository, or contact upstream to work through whatever issue is blocking them.
1 parent 6c0f807 commit fa80ecd

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

INSTALL.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Run time dependencies
66

77
* Python2.4 or newer.
88

9-
* subunit
9+
* subunit (0.0.18 or newer).
1010

1111
* fixtures (https://launchpad.net/python-fixtures, or
1212
http://pypi.python.org/pypi/fixtures/).

NEWS

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ CHANGES
1818
* Test filtering was failing under python3 and would only apply the
1919
filters to the first test listed by discover. (Clark Boylan, #1317607)
2020

21+
* Version 0.0.18 of subunit is now a hard dependency - the v2 protocol solves
22+
key issues in concurrency and stream handling. Users that cannot use subunit
23+
v2 can run an older testrepository, or contact upstream to work through
24+
whatever issue is blocking them. (Robert Collins)
25+
2126
* When list-tests encounters an error, a much clearer response will
2227
now be shown. (Robert Collins, #1271133)
2328

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def get_version():
9595
],
9696
install_requires=[
9797
'fixtures',
98-
'python-subunit >= 0.0.10',
98+
'python-subunit >= 0.0.18',
9999
'testtools >= 0.9.30',
100100
],
101101
extras_require = dict(

0 commit comments

Comments
 (0)