File tree 4 files changed +9
-3
lines changed
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
# master
2
2
3
+ ## Version 2.1.13 (4 Jul 2020)
4
+
5
+ * better diagnostics for API mode install failure [kleisauke]
6
+
3
7
## Version 2.1.12 (17 Feb 2020)
4
8
5
9
* update enums.py [tony612]
Original file line number Diff line number Diff line change 66
66
# The short X.Y version.
67
67
version = u'2.1'
68
68
# The full version, including alpha/beta/rc tags.
69
- release = u'2.1.12 '
69
+ release = u'2.1.13 '
70
70
71
71
# The language for content autogenerated by Sphinx. Refer to documentation
72
72
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
# this is execfile()d into setup.py imported into __init__.py
2
- __version__ = '2.1.12 '
2
+ __version__ = '2.1.13 '
3
3
4
4
__all__ = ['__version__' ]
Original file line number Diff line number Diff line change 11
11
from os import path
12
12
13
13
from setuptools import setup , find_packages
14
+ from distutils import log
14
15
15
16
here = path .abspath (path .dirname (__file__ ))
16
17
@@ -116,5 +117,6 @@ def setup_ABI():
116
117
117
118
try :
118
119
setup_API ()
119
- except Exception :
120
+ except Exception as e :
121
+ log .warn ('Falling back to ABI mode. Details: {0}' .format (e ))
120
122
setup_ABI ()
You can’t perform that action at this time.
0 commit comments