We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbf4842 commit e52306dCopy full SHA for e52306d
CHANGES.rst
@@ -1,6 +1,12 @@
1
CHANGES
2
=======
3
4
+0.7.2 (2017-09-01)
5
+------------------
6
+
7
+- Remove extra python3 file extension for executables.
8
9
10
0.7.1 (2017-08-18)
11
------------------
12
setuptools_rust/build.py
@@ -184,6 +184,9 @@ def build_extension(self, ext):
184
185
if executable:
186
ext_path = build_ext.get_ext_fullpath(target_fname)
187
+ # remove .so extension
188
+ ext_path, _ = os.path.splitext(ext_path)
189
+ # remove python3 extension (i.e. cpython-36m)
190
ext_path, _ = os.path.splitext(ext_path)
191
else:
192
0 commit comments