From 7ee0d6ad64106b682fcba66cac32622762410fee Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Thu, 10 Jan 2019 20:45:42 +0100 Subject: [PATCH] fix numpy http-https link. Closes #323 --- recipes/numpy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/numpy/__init__.py b/recipes/numpy/__init__.py index 3ecdad4..82c28f9 100644 --- a/recipes/numpy/__init__.py +++ b/recipes/numpy/__init__.py @@ -6,7 +6,7 @@ import shutil class NumpyRecipe(CythonRecipe): version = "1.9.1" - url = "http://pypi.python.org/packages/source/n/numpy/numpy-{version}.tar.gz" + url = "https://pypi.python.org/packages/source/n/numpy/numpy-{version}.tar.gz" library = "libnumpy.a" libraries = ["libnpymath.a", "libnpysort.a"] include_dir = "numpy/core/include"