From ee505783f5d4a94354f61162f822505b107f9ee8 Mon Sep 17 00:00:00 2001 From: mahtin Date: Tue, 17 May 2016 01:20:43 -0700 Subject: [PATCH] minor fix to make install work cleanly --- Makefile | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 256f1e8..505720d 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ build: setup.py $(PYTHON) setup.py build install: build - $(PYTHON) setup.py install + sudo $(PYTHON) setup.py install test: all # to be done diff --git a/setup.py b/setup.py index e2a39d1..824a6ed 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='cloudflare', - version='1.0.2', + version='1.0.3', description='Python wrapper for the CloudFlare v4 API', long_description=long_description, author='Martin J. Levy',