Skip to content

Commit a5b05cc

Browse files
Update change log, fixed issue with macOS wheels.
1 parent 9b6b0b4 commit a5b05cc

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 4.2.0rc2
2+
- Date 2025-04-30
3+
- Update README.md
4+
15
Version 4.2.0rc1
26
- Date 2025-04-24
37
- Updated to pylon Software Suite 8.1.0 on all platforms.

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1097,6 +1097,12 @@ def copy_runtime(self):
10971097
binary.write(output_path)
10981098
# Recombine into a universal binary
10991099
fat_binary.write(str(p))
1100+
# Repair/replace signature of patched libusb
1101+
info("Create AdHoc signature for \"" + os.path.basename(str(p)) + "\"...")
1102+
subprocess.run(["codesign", "--force", "-s", "-", str(p)], check=True)
1103+
# Repair/replace signature of pylon.framework
1104+
info("Create AdHoc signature for \"" + os.path.basename(full_dst) + "\"...")
1105+
subprocess.run(["codesign", "--force", "-s", "-", full_dst], check=True)
11001106

11011107
def include_pylon_data_processing(self):
11021108
return False

0 commit comments

Comments
 (0)