|
Lines 1-16
Link Here
|
| 1 |
--- setup.py.orig 2011-07-05 18:59:59.000000000 +0400 |
1 |
--- setup.py.orig 2015-04-10 00:00:26.000000000 +0300 |
| 2 |
+++ setup.py 2011-07-14 22:37:09.000000000 +0400 |
2 |
+++ setup.py 2015-04-10 00:02:33.000000000 +0300 |
| 3 |
@@ -7,13 +7,6 @@ |
3 |
@@ -8,14 +8,6 @@ |
| 4 |
|
4 |
|
| 5 |
# wow, this is a mixed bag ... I am pretty upset about all of this ... |
5 |
# wow, this is a mixed bag ... I am pretty upset about all of this ... |
| 6 |
setuptools_build_py_module = None |
6 |
setuptools_build_py_module = None |
| 7 |
-try: |
7 |
-try: |
| 8 |
- # don't pull it in if we don't have to |
8 |
- # don't pull it in if we don't have to |
| 9 |
- if 'setuptools' in sys.modules: |
9 |
- if 'setuptools' in sys.modules: |
| 10 |
- import setuptools.command.build_py as setuptools_build_py_module |
10 |
- import setuptools.command.build_py as setuptools_build_py_module |
| 11 |
- from setuptools.command.build_ext import build_ext |
11 |
- from setuptools.command.build_ext import build_ext |
| 12 |
-except ImportError: |
12 |
-except ImportError: |
| 13 |
- pass |
13 |
- pass |
|
|
14 |
- |
| 14 |
|
15 |
|
| 15 |
class build_ext_nofail(build_ext): |
16 |
class build_ext_nofail(build_ext): |
| 16 |
"""Doesn't fail when build our optional extensions""" |
17 |
|