Skip to content

Commit 0c0c62d

Browse files
authored
Merge pull request #325 from pyupio/appveyor-fixes
MacOS AppVeyor Python Binary
2 parents d46b896 + 11cf049 commit 0c0c62d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

appveyor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ def python(self):
4444
]),
4545

4646
MACOS: {
47-
# On macOS the binary is built using Python 3.7 (Homebrew), because
48-
# the shipped Python lacks libraries PyInstaller needs.
49-
64: "/usr/local/bin/python3",
47+
# Trying to use Python 3 compatible with PyInstaller according
48+
# https://www.appveyor.com/docs/macos-images-software/#python
49+
64: "~/venv3.8/bin/python",
5050
}
5151
}
5252

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ skip_branch_with_pr: true
99
branches:
1010
only:
1111
- master
12+
- appveyor-fixes
1213
- /\d*\.\d*\.\d*/
1314

1415
# note: on macOS the binary is built using Python 3.7 (installed via Homebrew), because

0 commit comments

Comments
 (0)