From 4f85d9971978d2242c76c586cd3ac5afbe87c6eb Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Fri, 16 Aug 2013 12:44:46 +1200 Subject: * ``setup.py`` now lists the ``testtools`` dependency which was missing. (Robert Collins, #1103823) --- NEWS | 3 +++ setup.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/NEWS b/NEWS index 470506f..51a8db7 100644 --- a/NEWS +++ b/NEWS @@ -15,6 +15,9 @@ CHANGES * ``FakePopen`` now only passes parameters to the get_info routine if the caller supplied them. (Robert Collins) +* ``setup.py`` now lists the ``testtools`` dependency which was missing. + (Robert Collins, #1103823) + 0.3.12 ~~~~~~ diff --git a/setup.py b/setup.py index 918203f..e772ab4 100755 --- a/setup.py +++ b/setup.py @@ -27,4 +27,7 @@ setup(name="fixtures", 'Topic :: Software Development :: Quality Assurance', 'Topic :: Software Development :: Testing', ], + requires = [ + 'testtools', + ], ) -- cgit v1.2.1