summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2014-08-24 18:22:36 +1200
committerRobert Collins <robertc@robertcollins.net>2014-08-24 18:22:36 +1200
commit2cb1a2db92786cf15a22644588e11bc22e0c3e09 (patch)
tree28d1505bad4ac0d155129dd0b1fc586e2dede8a5
parent4b1cf209d9e132440bc9cfed30c693ecbfab6c30 (diff)
downloadsubunit-2cb1a2db92786cf15a22644588e11bc22e0c3e09.tar.gz
* testscenarios is now a test dependency, not an install dependency.
(Arfrever Frehtes Taifersar Arahesis, #1292757)
-rw-r--r--NEWS6
-rwxr-xr-xsetup.py6
2 files changed, 10 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 2023c2e..8815b0f 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,12 @@ subunit release notes
NEXT (In development)
---------------------
+BUGFIXES
+~~~~~~~~
+
+* testscenarios is now a test dependency, not an install dependency.
+ (Arfrever Frehtes Taifersar Arahesis, #1292757)
+
0.0.19
------
diff --git a/setup.py b/setup.py
index 8bc7921..d0b8be3 100755
--- a/setup.py
+++ b/setup.py
@@ -11,9 +11,11 @@ else:
extra = {
'install_requires': [
'extras',
- 'testscenarios',
'testtools>=0.9.34',
- ]
+ ],
+ 'tests_require': [
+ 'testscenarios',
+ ],
}