This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Choose which python to use from some popular options, in this order:
1. python.org https://www.python.org/downloads/ 2. MacAdmins https://github.com/macadmins/python 3. Munki https://github.com/munki/munki If none of these are on disk, then fall back to Apple's system python, which can be installed via the Command Line Tools. "What about python 2, which Apple still ships," you ask? Outset does not support python 2, which was sunsetted on Jan 1, 2020. See https://www.python.org/doc/sunset-python-2/. If you choose to continue to use python 2, you'll want to create the symlink via other means, with something like: /bin/ln -s /usr/bin/python /usr/local/outset/python3
- Loading branch information
Showing
3 changed files
with
39 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
PKGTITLE="outset" | ||
PKGVERSION="3.0.0" | ||
PKGVERSION="3.0.1" | ||
PKGID=com.github.outset | ||
PROJECT="outset" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env python3 | ||
#!/usr/local/outset/python3 | ||
|
||
""" | ||
This script automatically processes packages, profiles, and/or scripts at | ||
|
@@ -40,7 +40,7 @@ from platform import mac_ver | |
from stat import S_IWOTH, S_IXOTH | ||
|
||
__author__ = "Joseph Chilcote ([email protected])" | ||
__version__ = "3.0.0" | ||
__version__ = "3.0.1" | ||
|
||
if not sys.warnoptions: | ||
warnings.simplefilter("ignore") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters