Fix packaging on Python 2.6.
Review Request #8503 — Created Oct. 27, 2016 and submitted
The new and improved setup.py support fails on Python 2.6, due to the
inability to directly callpython -m pip
. Instead, we have to specify
the specific module by callingpython -m pip.__main__
. This is not
required for Python 2.7, but works fine there.This change will not be merged to release-0.10.x.
Built the package successfully on both Python 2.6 and 2.7.