Skip to content
Snippets Groups Projects
Commit 04504d11 authored by Dustin Rodrigues's avatar Dustin Rodrigues
Browse files

audit: temporarily allow python3.9 rc

parent 164f0f0e
No related branches found
No related tags found
No related merge requests found
......@@ -712,6 +712,11 @@ module Homebrew
"vbindiff" => "3.0_beta",
}.freeze
# used for formulae that are unstable but need CI run without being in homebrew/core
UNSTABLE_DEVEL_ALLOWLIST = {
"python@3.9" => "3.9.0rc",
}.freeze
GNOME_DEVEL_ALLOWLIST = {
"libart" => "2.3",
"gtk-mac-integration" => "2.1",
......@@ -784,6 +789,7 @@ module Homebrew
matched = Regexp.last_match(1)
version_prefix = stable_version_string.sub(/\d+$/, "")
return if UNSTABLE_ALLOWLIST[formula.name] == version_prefix
return if UNSTABLE_DEVEL_ALLOWLIST[formula.name] == version_prefix
problem "Stable version URLs should not contain #{matched}"
when %r{download\.gnome\.org/sources}, %r{ftp\.gnome\.org/pub/GNOME/sources}i
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment