Skip to content

Commit

Permalink
Fix #334: Also include arm64 stubs in distribution archives
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldoussoren committed Apr 5, 2021
1 parent 1248ffe commit 0ff9da9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ py2app 0.24
* Consolidate recipes that just mark imports as expected
missing into a single recipe to reduce code complexity.

* #334: Include binary stubs for Universal 2 binaries in the archives
* #334: Include binary stubs for Universal 2 and arm64 binaries in the archives

The files were in the repository, but were excluded from the source
and wheel archives.
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ def run(self):
package_data={
"py2app.recipes": ["qt.conf"],
"py2app.apptemplate": [
"prebuilt/main-arm64",
"prebuilt/main-i386",
"prebuilt/main-ppc",
"prebuilt/main-x86_64",
Expand All @@ -306,6 +307,7 @@ def run(self):
"prebuilt/main-intel",
"prebuilt/main-universal",
"prebuilt/main-universal2",
"prebuilt/main-asl-arm64",
"prebuilt/main-asl-i386",
"prebuilt/main-asl-ppc",
"prebuilt/main-asl-x86_64",
Expand All @@ -315,6 +317,7 @@ def run(self):
"prebuilt/main-asl-intel",
"prebuilt/main-asl-universal",
"prebuilt/main-asl-universal2",
"prebuilt/secondary-arm64",
"prebuilt/secondary-i386",
"prebuilt/secondary-ppc",
"prebuilt/secondary-x86_64",
Expand All @@ -329,6 +332,7 @@ def run(self):
"src/main.c",
],
"py2app.bundletemplate": [
"prebuilt/main-arm64",
"prebuilt/main-i386",
"prebuilt/main-ppc",
"prebuilt/main-x86_64",
Expand Down

0 comments on commit 0ff9da9

Please sign in to comment.