From 61d43df322721f6a9cf65d6050559810b4e730ac Mon Sep 17 00:00:00 2001 From: vrachil Date: Tue, 2 Apr 2013 11:40:28 +0300 Subject: [PATCH] Update setup.py Fix installation into an empty environment. Installing python-intercom in an empty virtualenv would fail because it was trying to import the requests package inside intercom/intercom.py. To properly fix this, the intercom/__init__.py file must be reorganized. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a862d1e6..d3073b1b 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import find_packages from setuptools import setup -from intercom import VERSION +VERSION = "0.2.7" setup( name="python-intercom",