Commit ca577ebe authored by Jim Fulton's avatar Jim Fulton

Suppress spurios (and possibly non-spurious) version-parsing errors.

parent 37adf716
......@@ -35,6 +35,10 @@ import subprocess
import sys
import tempfile
import zc.buildout
import warnings
warnings.filterwarnings(
'ignore', '.+is being parsed as a legacy, non PEP 440, version')
_oprp = getattr(os.path, 'realpath', lambda path: path)
def realpath(path):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment