Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

bump numpy #68

Merged
merged 4 commits into from
Jan 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 8 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,16 @@ matrix:
- os: linux
env:
- MB_PYTHON_VERSION=3.8
- NP_BUILD_DEP="numpy==1.18.0.dev0"
- NP_TEST_DEP="numpy==1.18.0.dev0"
- NP_BUILD_DEP="numpy==1.17.3"
- NP_TEST_DEP="numpy==1.17.3"

- os: linux
- os: osx
language: generic
env:
- MB_PYTHON_VERSION=3.5
- MB_PYTHON_VERSION=3.8
- NP_BUILD_DEP="numpy==1.17.3"
- NP_TEST_DEP="numpy==1.17.3"

- os: linux
env:
- MB_PYTHON_VERSION=3.6
Expand All @@ -48,14 +52,6 @@ matrix:
env:
- MB_PYTHON_VERSION=3.6
- PLAT=i686
- os: osx
language: generic
env:
- MB_PYTHON_VERSION=3.5
- MB_PYTHON_OSX_VER=10.6 # no python.org 10.9 builds for 3.5
# WAR for setup_requires TLS issue with Python 3.5 on macOS
# see https://github.com/pandas-dev/pandas/issues/28954
- EXTRA_BUILD_DEP="setuptools_scm"
- os: osx
language: generic
env:
Expand Down
10 changes: 0 additions & 10 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,6 @@ function build_wheel {
}


function pip_opts {
# Add pre-release index until official NumPy release with 3.8
if [ -n "$MANYLINUX_URL" ]; then
echo "--find-links $MANYLINUX_URL --find-links=https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com"
else
echo "--find-links=https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com"
fi
}


function run_tests {
# Runs tests on installed distribution from an empty directory
export PYTHONHASHSEED=$(python -c 'import random; print(random.randint(1, 4294967295))')
Expand Down