From c1062db9fd19a3f5ff8468f8db8a6f29d65cc392 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Wed, 5 Nov 2014 09:58:07 +1300 Subject: [PATCH] Add a pip requirement to pathod to work around a pip/requests screwup --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index b756dbfe6..302b2db62 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,9 @@ setup( install_requires=[ 'netlib>=%s' % version.MINORVERSION, + # It's INSANE that we have to do this, but... + # FIXME: Requirement to be removed at next release + "pip>=1.5.6", "requests>=2.4.1", "Flask>=0.10.1" ],