assert py.__version__ to be 2.0 at least to avoid other weird errors
--HG-- branch : trunk
This commit is contained in:
parent
22282eedb9
commit
270deb015e
|
@ -1,4 +1,8 @@
|
|||
import py
|
||||
|
||||
assert py.__version__.split(".")[:2] >= ['2', '0'], ("installation problem: "
|
||||
"%s is too old, remove or upgrade 'py'" % (py.__version__))
|
||||
|
||||
import sys, os
|
||||
|
||||
default_plugins = (
|
||||
|
|
Loading…
Reference in New Issue