From aed5bf7cc7440ff1676e14e132f9a1064f2694c9 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Mon, 10 Sep 2012 23:09:41 -0400 Subject: [PATCH] As per the discussion on #841. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9430942..35c87ce 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,6 @@ if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() -bytecode = os.getenv('PYTHONDONTWRITEBYTECODE', '0') os.environ['PYTHONDONTWRITEBYTECODE'] = '1' packages = [ @@ -69,4 +68,4 @@ setup( ), ) -os.environ['PYTHONDONTWRITEBYTECODE'] = bytecode +del os.environ['PYTHONDONTWRITEBYTECODE'] -- 2.34.1