adding support for pip version >=19.3 by supporting change to PipSession() location in setup.py

This commit is contained in:
csine-nflx 2020-01-29 15:30:08 -08:00
parent 9576fa4b0f
commit 48d8e1d235
1 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,11 @@ from setuptools import setup, find_packages
from subprocess import check_output
import pip
if tuple(map(int, pip.__version__.split('.'))) >= (10, 0, 0):
if tuple(map(int, pip.__version__.split('.'))) >= (19, 3, 0):
from pip._internal.network.session import PipSession
from pip._internal.req import parse_requirements
elif tuple(map(int, pip.__version__.split('.'))) >= (10, 0, 0):
from pip._internal.download import PipSession
from pip._internal.req import parse_requirements
else: