File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## HEAD
4
4
5
+ ## 3.2.0
6
+
7
+ Released Jul. 1, 2020
8
+
9
+ ### User-facing changes
10
+ - [ FEATURE] Ensure that system-copied libraries are writable before running patchelf
11
+ ([ https://github.com/pypa/auditwheel/pull/237 ] ( #237 ) )
12
+ - [ FEATURE] Preserve RPATH in extension modules ([ https://github.com/pypa/auditwheel/pull/245 ] ( #245 ) )
13
+
5
14
## 3.1.1
6
15
7
16
Released Apr. 25, 2020
Original file line number Diff line number Diff line change @@ -158,10 +158,10 @@ def is_valid_rpath(rpath: str) -> bool:
158
158
rpaths = filter (is_valid_rpath , old_rpaths .split (':' ))
159
159
# Remove duplicates while preserving ordering
160
160
# Fake an OrderedSet using OrderedDict
161
- rpaths = OrderedDict ([(old_rpath , '' ) for old_rpath in rpaths ])
162
- rpaths [rpath ] = ''
161
+ rpath_set = OrderedDict ([(old_rpath , '' ) for old_rpath in rpaths ])
162
+ rpath_set [rpath ] = ''
163
163
164
- patcher .set_rpath (lib_name , ':' .join (rpaths ))
164
+ patcher .set_rpath (lib_name , ':' .join (rpath_set ))
165
165
166
166
167
167
def _is_valid_rpath (rpath : str ,
You can’t perform that action at this time.
0 commit comments