diff options
author | Robert Collins <robertc@robertcollins.net> | 2012-12-17 20:24:28 +1300 |
---|---|---|
committer | Robert Collins <robertc@robertcollins.net> | 2012-12-17 20:24:28 +1300 |
commit | d6b7ba2312022dadbde9e1b357d0cd64d1a1d67b (patch) | |
tree | 7fcfe11b099622ccfdacff59a9fd93eebfa25725 /setup.py | |
parent | 6bcd5f96767d0e438001c30b441c13e33c062992 (diff) | |
download | subunit-git-d6b7ba2312022dadbde9e1b357d0cd64d1a1d67b.tar.gz |
* The ``failfast`` option to ``subunit.run`` will now work. The dependency on
testtools has been raised to 0.9.23 to permit this.
(Robert Collins, #1090582)
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9,7 +9,7 @@ except ImportError: else: extra = { 'install_requires': [ - 'testtools>=0.9.11', + 'testtools>=0.9.23', ] } @@ -38,6 +38,7 @@ setup( long_description=open('README').read(), classifiers=[ 'Intended Audience :: Developers', + 'Programming Language :: Python :: 3', 'Programming Language :: Python', 'Topic :: Software Development :: Testing', ], |