diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -50,7 +50,11 @@ else: # workaround subclass for ticket #153 pass - sys.path.insert(0, 'scripts') + # Configure distutils to run our custom 2to3 fixers as well + from lib2to3.refactor import get_fixers_from_package + build_py.fixer_names = [f for f in get_fixers_from_package('lib2to3.fixes') + # creates a pending deprecation warning on py 3.4 + if not f.endswith('.fix_reload')] try: import configparser |