From 7d5cf6f3182b3fd033856b43edceb7ee39172655 Mon Sep 17 00:00:00 2001 From: "roberto@sirius" Date: Sat, 1 May 2010 07:14:14 +0200 Subject: [PATCH] pip hack --- ChangeLog | 23 +++++++++++++++++++++++ setup.py | 6 ++++++ 2 files changed, 29 insertions(+) diff --git a/ChangeLog b/ChangeLog index a3bb8bc11c..5718416709 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,26 @@ +*** may 2010 *** + + * 0.9.5 [20100501] * + +- hook based request/modifier management +- plugin support via dlopen +- on-the-fly management flag +- integrated proxy +- logging via udp +- improved spooler for cron-like apps +- async support +- green thread platform (uGreen) on top of teh async mode +- transparent Erlang integration +- embedded snmp agent +- nagios mode +- improved python 3.x support +- improved xml configuration +- new build system +- address space usage limiting +- lot of portability fixes +- lot of optimizations and code refactoring + + *** april 2010 *** * Fourth Maintenance release [20100427] * diff --git a/setup.py b/setup.py index 3174f6887f..1cfacd9b3d 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,12 @@ from distutils.command.install import install from distutils.command.build_ext import build_ext +# hack for distutils/pip +try: + sys.argv.remove('--single-version-externally-managed') +except: + pass + class uWSGIBuilder(build_ext): def run(self):