From 4075dc7d2b942775c0e9db97d313a3faf17ab408 Mon Sep 17 00:00:00 2001
From: Joe Garcia <joe.garcia@ssec.wisc.edu>
Date: Thu, 6 Mar 2025 08:40:59 -0600
Subject: [PATCH] psutil with patch

---
 ShellB3/shallbethree.sh | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/ShellB3/shallbethree.sh b/ShellB3/shallbethree.sh
index 64b192f5..87979983 100755
--- a/ShellB3/shallbethree.sh
+++ b/ShellB3/shallbethree.sh
@@ -11894,6 +11894,8 @@ mk__ipython(){
 
 mk__ipykernel(){
   resume_tracker && return 0
+  mk_psutil
+  resume_tracker
   if isDarwin ; then
     pip_install src/macos/appnope-*.gz  || oops 'appnope did not install'
   fi
@@ -12316,7 +12318,7 @@ mk_statsmodels() {
   return 0
 }
 
-mk_memoryprofiler(){
+mk_psutil(){
   resume_tracker && return 0
 
   make_patch psutil <<PATCH
@@ -12334,6 +12336,13 @@ mk_memoryprofiler(){
 PATCH
 
   _setup_build_install psutil src/optional/psutil-${PSUTILVER}.tar.* psutil-${PSUTILVER} || oops "psutil did not install"
+}
+
+mk_memoryprofiler(){
+  resume_tracker && return 0
+
+  mk_psutil
+  resume_tracker
 
   _setup_build_install memory_profiler src/optional/memory_profiler-${MEMORYPROFILERVER}.tar.* memory_profiler-${MEMORYPROFILERVER} || oops "memory_profiler did not install"
 
-- 
GitLab