From f25c4fe4d218a2e8040aa90c337256c82557b70d Mon Sep 17 00:00:00 2001 From: Mark Ferguson Date: Fri, 14 Dec 2018 20:20:08 -0700 Subject: [PATCH] Corrected import paths so that pip works properly --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2bd97e8..f370c56 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ """This module contains the packaging routine for the ``scrapy-algolia-exporter`` package""" from setuptools import setup, find_packages -from pip.download import PipSession -from pip.req import parse_requirements +from pip._internal.download import PipSession +from pip._internal.req import parse_requirements def get_requirements(source):