[Bf-blender-cvs] [925f2c8b9d2] master: Fix T52875: install_deps.sh - numpy-1.13.1.tar.gz - 404 Not Found.

Bastien Montagne noreply at git.blender.org
Fri Sep 22 18:57:00 CEST 2017


Commit: 925f2c8b9d2ac766d697e8b840e1715b67e6ceeb
Author: Bastien Montagne
Date:   Fri Sep 22 18:56:37 2017 +0200
Branches: master
https://developer.blender.org/rB925f2c8b9d2ac766d697e8b840e1715b67e6ceeb

Fix T52875: install_deps.sh - numpy-1.13.1.tar.gz - 404 Not Found.

===================================================================

M	build_files/build_environment/install_deps.sh

===================================================================

diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index 73ac2595acb..6e2910731bb 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -739,7 +739,7 @@ PRINT ""
 
 # This has to be done here, because user might force some versions...
 PYTHON_SOURCE=( "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tgz" )
-NUMPY_SOURCE=( "http://sourceforge.net/projects/numpy/files/NumPy/$NUMPY_VERSION/numpy-$NUMPY_VERSION.tar.gz" )
+NUMPY_SOURCE=( "https://github.com/numpy/numpy/releases/download/v$NUMPY_VERSION/numpy-$NUMPY_VERSION.tar.gz" )
 
 _boost_version_nodots=`echo "$BOOST_VERSION" | sed -r 's/\./_/g'`
 BOOST_SOURCE=( "http://sourceforge.net/projects/boost/files/boost/$BOOST_VERSION/boost_$_boost_version_nodots.tar.bz2/download" )



More information about the Bf-blender-cvs mailing list