Skip to content

Commit 6afd879

Browse files
authored
Merge pull request #252 from lkollar/3.2.0
Prepare 3.2.0 release
2 parents 0c7444b + 83eadf6 commit 6afd879

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## HEAD
44

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+
514
## 3.1.1
615

716
Released Apr. 25, 2020

auditwheel/repair.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,10 @@ def is_valid_rpath(rpath: str) -> bool:
158158
rpaths = filter(is_valid_rpath, old_rpaths.split(':'))
159159
# Remove duplicates while preserving ordering
160160
# 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] = ''
163163

164-
patcher.set_rpath(lib_name, ':'.join(rpaths))
164+
patcher.set_rpath(lib_name, ':'.join(rpath_set))
165165

166166

167167
def _is_valid_rpath(rpath: str,

0 commit comments

Comments
 (0)