From 5db04acf1d41d5ef0720bbda1ed400a9c45b024e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 19 Feb 2024 14:33:35 +0000 Subject: [PATCH] docs: updates from Homebrew/brew --- docs/FormulaCellarChecks.html | 4 ++-- docs/Homebrew.html | 16 +++------------- 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/docs/FormulaCellarChecks.html b/docs/FormulaCellarChecks.html index 9d90e5923..fe1284e28 100644 --- a/docs/FormulaCellarChecks.html +++ b/docs/FormulaCellarChecks.html @@ -1105,13 +1105,13 @@
# File 'formula_cellar_checks.rb', line 133 def check_easy_install_pth(lib) - pth_found = Dir["#{lib}/python{2.7,3}*/site-packages/easy-install.pth"].map { |f| File.dirname(f) } + pth_found = Dir["#{lib}/python3*/site-packages/easy-install.pth"].map { |f| File.dirname(f) } return if pth_found.empty? <<~EOS 'easy-install.pth' files were found. These '.pth' files are likely to cause link conflicts. - Please invoke `setup.py` using 'Language::Python.setup_install_args'. + Easy install is now deprecated, do not use it. The offending files are: #{pth_found * "\n "} EOS diff --git a/docs/Homebrew.html b/docs/Homebrew.html index 3911765b3..d1fb21319 100644 --- a/docs/Homebrew.html +++ b/docs/Homebrew.html @@ -42350,12 +42350,7 @@+9491 92 93 -94 -95 -96 -97 -98 -99
# File 'dev-cmd/typecheck.rb', line 39 @@ -42370,13 +42365,8 @@HOMEBREW_LIBRARY_PATH.cd do if update safe_system "bundle", "exec", "tapioca", "dsl" - # RBI files already provided by Sorbet: - excluded_gems = [ - "json", - "msgpack", - ] - tapioca_args = ["--exclude", *excluded_gems, "--pre", "sorbet/tapioca/prerequire.rb"] - tapioca_args << "--all" if args.update_all? + # Prefer adding args here: Library/Homebrew/sorbet/tapioca/config.yml + tapioca_args = args.update_all? ? ["--all"] : [] ohai "Updating homegrown RBI files..." safe_system "bundle", "exec", "ruby", "sorbet/custom_generators/tty.rb"