From 9aa36e55f810763bc34c98429c5abbaa7bcb5760 Mon Sep 17 00:00:00 2001 From: Marko Kosunen Date: Sat, 5 Oct 2024 21:42:17 +0300 Subject: [PATCH] Update pythoninstalls --- python_installs.sh | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/python_installs.sh b/python_installs.sh index 8fad978..cab8069 100755 --- a/python_installs.sh +++ b/python_installs.sh @@ -41,7 +41,7 @@ done PACKAGES="\ wheel \ gnureadline \ - numpy \ + numpy>=1.26.0,<=1.26.4 \ numpydoc \ matplotlib \ joblib \ @@ -49,7 +49,7 @@ PACKAGES="\ pandas \ sphinx \ sphinx_rtd_theme \ - myst_parser \ + myst-parser \ PyQt5 \ pyelftools \ sortedcontainers \ @@ -66,11 +66,3 @@ done exit 0 - -for package in ${PACKAGES}; do - echo "Installing ${package}" - ${PIP} ${UPGRADE} ${package} -done - -exit 0 -