From a9e46e27200868fa78344a00d25aa5a2ec03edbf Mon Sep 17 00:00:00 2001 From: Graham Mainwaring Date: Thu, 10 Nov 2016 13:38:58 -0500 Subject: [PATCH] Remove obsolete script --- fix_virtualenv_setuptools.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 fix_virtualenv_setuptools.py diff --git a/fix_virtualenv_setuptools.py b/fix_virtualenv_setuptools.py deleted file mode 100755 index 98f719d5cf..0000000000 --- a/fix_virtualenv_setuptools.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python -''' -Fix setuptools (in virtualenv) after upgrading to distribute >= 0.7. -''' - -from distutils.sysconfig import get_python_lib -import glob -import os -import shutil - -for f in glob.glob(os.path.join(get_python_lib(), 'setuptools-0.6*.egg*')): - print 'removing', f - if os.path.isdir(f): - shutil.rmtree(f) - else: - os.remove(f)