From d7e79385d233700d9402c6e4da5e6a7129bbfa4c Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Mon, 28 Dec 2020 15:27:35 -0800 Subject: [PATCH] Use python 3.9 for macOS, because of PyInstaller update, and make build_app.py executable --- BUILD.md | 4 ++-- install/macos/build_app.py | 0 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 install/macos/build_app.py diff --git a/BUILD.md b/BUILD.md index c1655f0..55c627c 100644 --- a/BUILD.md +++ b/BUILD.md @@ -46,10 +46,10 @@ Create a .rpm: ## macOS -Install python@3.7 (PyInstaller doesn't support newer versions yet) and other dependencies from Homebrew: +Install python@3.9 from Homebrew: ``` -brew install python@3.7 create-dmg graphicsmagick imagemagick +brew install python@3.9 create-dmg graphicsmagick imagemagick ``` If you don't have it already, install poetry (`pip3 install --user poetry`). Then install dependencies: diff --git a/install/macos/build_app.py b/install/macos/build_app.py old mode 100644 new mode 100755