Numpy: bump, introduce/fix 3.6/3.7 version (#4222)

1.17 doesn't support python2 anymore
This commit is contained in:
miqlas
2019-10-03 04:22:25 +02:00
committed by waddlesplash
parent 26970bfa60
commit 97d0e09532
2 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ COPYRIGHT="2005-2019 Travis E. Oliphant et al."
LICENSE="BSD (3-clause)"
REVISION="1"
SOURCE_URI="https://github.com/numpy/numpy/releases/download/v$portVersion/numpy-$portVersion.tar.gz"
CHECKSUM_SHA256="8088221e6e27da8d5907729f0bfe798f526836f22cc59ae83a0f867e67416a3e"
CHECKSUM_SHA256="2b63c414fb43a4f0cb69b29b7e9d48275af0dbb5b1ffd2f2de99c4df9967e151"
SOURCE_DIR="numpy-$portVersion"
PATCHES="numpy-$portVersion.patch"
@@ -44,8 +44,8 @@ BUILD_REQUIRES="
# devel:libumfpack$secondaryArchSuffix
"
PYTHON_PACKAGES=(python python3)
PYTHON_VERSIONS=(2.7 3.6)
PYTHON_PACKAGES=(python python36 python3)
PYTHON_VERSIONS=(2.7 3.6 3.7)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}