We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent febe42c commit 5d1907bCopy full SHA for 5d1907b
setup.py
@@ -15,7 +15,8 @@
15
# this is for sdist to work.
16
import sys
17
if sys.version_info < (2, 7):
18
- raise RuntimeError('This version requires Python 2.7+')
+ # python 2.6 no longer supported, use last 1.x release instead.
19
+ raise RuntimeError('This version requires Python 2.7+') # pragma: no cover
20
21
setup(
22
name = 'unittest-xml-reporting',
0 commit comments