From 5dbaa9f8766cc8665cdbcf59a9a5368531fe2bba Mon Sep 17 00:00:00 2001 From: Devvyn Murphy Date: Thu, 12 Mar 2015 23:42:21 +0000 Subject: [PATCH] remove "black magic" workaround Newest setuptools doesn't provide "finders" attribute, so setup.py cannot execute. If you don't like the removal, maybe some conditions or a try/except block will workaround the removal of the workaround for older setuptools versions. See for source of fix. --- setup.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/setup.py b/setup.py index 489afe8..2f9a3a3 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,6 @@ import os from setuptools import setup, find_packages -# This is to disable the 'black magic' surrounding versioned repositories... Terrible! -from setuptools.command import sdist -del sdist.finders[:] - # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level # README file and 2) it's easier to type in the README file than to put a raw