Skip to content

Commit fd7430c

Browse files
committed
Fix extension building script
1 parent 0054e74 commit fd7430c

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## [Unreleased]
4+
5+
### Fixed
6+
7+
- Fixed extension building script.
8+
9+
310
## [1.4.3] - 2018-03-20
411

512
### Fixed

build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ def run(self):
3838
try:
3939
build_ext.run(self)
4040
except (DistutilsPlatformError, FileNotFoundError):
41-
raise BuildFailed()
41+
pass
4242

4343
def build_extension(self, ext):
4444
try:
4545
build_ext.build_extension(self, ext)
4646
except (CCompilerError, DistutilsExecError,
4747
DistutilsPlatformError, ValueError):
48-
raise BuildFailed()
48+
pass
4949

5050

5151
def build(setup_kwargs):

0 commit comments

Comments
 (0)