Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kliment/Printrun.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDivingDuck <DivingDuck@users.noreply.github.com>2021-01-06 15:14:03 +0300
committerDivingDuck <DivingDuck@users.noreply.github.com>2021-01-06 15:14:03 +0300
commit1278a5a7869a8d72db5ffaf5a162ce1f623f8d20 (patch)
tree111f387dea66309a56c70aa105f947d13bc79fbb
parent728115f0ba1151fa42e16a314dbab43b1af09835 (diff)
Remove hotfix after new version of numpy 1.19.4 is available
-rw-r--r--release_windows_new.bat18
1 files changed, 10 insertions, 8 deletions
diff --git a/release_windows_new.bat b/release_windows_new.bat
index 72f9dbb..8aa441c 100644
--- a/release_windows_new.bat
+++ b/release_windows_new.bat
@@ -76,9 +76,9 @@ if exist v3 (
echo ***********************
pip install simplejson
- echo *******************************
- echo ****** pyinstaller 4 dev ******
- echo *******************************
+ rem echo *******************************
+ rem echo ****** pyinstaller 4 dev ******
+ rem echo *******************************
rem pyinstaller v3.6 don't work with Windows 10 pip install pyinstaller
rem update 2020-12-13: there is a new version available v4.1.
rem Looks like we don't need this fix any longer
@@ -99,16 +99,18 @@ echo ****** check for and update outdated modules ******
echo ****************************************************
for /F "skip=2 delims= " %%i in ('pip list --outdated') do pip install --upgrade %%i
-echo ****************************************************************************************
-echo ****** --->> Hotfix AGe: solve numpy 1.19.4 problem for x64 windows runtime error ******
-echo ****************************************************************************************
+rem echo ****************************************************************************************
+rem echo ****** --->> Hotfix AGe: solve numpy 1.19.4 problem for x64 windows runtime error ******
+rem echo ****************************************************************************************
rem numpy v1.19.4 create an python RuntimeError: The current Numpy installation fails to pass a
rem sanity check due to a bug in the windows runtime. See this issue for more information:
rem https://tinyurl.com/y3dm3h86
rem Temporary workaround is to install 1.19.3 instead.
rem --> ToDo: Need to be checked in 2021 January again
-pip uninstall numpy
-pip install numpy==1.19.3
+rem update 2021-01-06: There is a new version available
+rem --> Solved with version 1.19.5
+rem pip uninstall numpy
+rem pip install numpy==1.19.3
echo ******************************************************************
echo ****** Compile G-Code parser gcoder_line.cp37-win_amd64.pyd ******