Skip to content

Instantly share code, notes, and snippets.

@tobiasmcnulty
Created January 12, 2024 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobiasmcnulty/e4044880b770a28d09e5ec35a8f1c55b to your computer and use it in GitHub Desktop.
Save tobiasmcnulty/e4044880b770a28d09e5ec35a8f1c55b to your computer and use it in GitHub Desktop.
# Documentation: https://docs.brew.sh/Cask-Cookbook
# https://docs.brew.sh/Adding-Software-to-Homebrew#cask-stanzas
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
cask "python-3-9" do
version "3.9.13"
sha256 "351fe18f4fb03be7afac5e4012fc0a51345f43202af43ef620cf1eee5ee36578"
url "https://www.python.org/ftp/python/#{version}/python-#{version}-macos11.pkg"
name "python-3-9"
desc "Python 3.9 for Mac via python.org"
homepage "https://www.python.org/"
# Documentation: https://docs.brew.sh/Brew-Livecheck
livecheck do
url "https://www.python.org/downloads/macos/"
regex(/python-(3\.9\.\d+)-macos11.pkg">macOS 64-bit universal2 installer/i)
end
depends_on macos: ""
app ""
# Documentation: https://docs.brew.sh/Cask-Cookbook#stanza-zap
zap trash: ""
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment