diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-06-27 04:45:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-27 04:45:13 -0700 |
commit | 68bba61955a51d02ebe89a40cd88b9be73241fe6 (patch) | |
tree | 08d84390b86b7dedbbcf56b238fc1aef6c496015 | |
parent | b976458713fbbe3b282792ad10500693844bfeec (diff) | |
parent | c6ce48922570e31a1b604f90e038f4b165a4751e (diff) | |
download | numpy-68bba61955a51d02ebe89a40cd88b9be73241fe6.tar.gz |
Merge pull request #13851 from mwtoews/shippable
MAINT: Update shippable.yml to remove Python 2 dependency
-rw-r--r-- | shippable.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/shippable.yml b/shippable.yml index 75d2dcafe..9fbd17d9a 100644 --- a/shippable.yml +++ b/shippable.yml @@ -31,13 +31,11 @@ build: - tar zxvf openblas-v0.3.5-armv8.tar.gz - sudo cp -r ./64/lib/* /usr/lib - sudo cp ./64/include/* /usr/include - # add pathlib for Python 2, otherwise many tests are skipped - pip install --upgrade pip # we will pay the ~13 minute cost of compiling Cython only when a new # version is scraped in by pip; otherwise, use the cached # wheel shippable places on Amazon S3 after we build it once - pip install cython --cache-dir=/root/.cache/pip/wheels/$SHIPPABLE_PYTHON_VERSION - - pip install pathlib # install pytz for datetime testing - pip install pytz # install pytest-xdist to leverage a second core @@ -60,7 +58,7 @@ build: cache_dir_list: # the NumPy project uses a single Amazon S3 cache # so upload the parent path of the Python-specific - # version paths to avoid i.e., 2.7 overwriting + # version paths to avoid i.e., 3.6 overwriting # 3.7 pip cache (seems to be an issue) - /root/.cache/pip/wheels |