From fa1f6f2b1910c18355de2bb3ccf1534debb0d7fa Mon Sep 17 00:00:00 2001 From: Brandon Rhodes Date: Mon, 16 Dec 2019 12:16:57 -0500 Subject: [PATCH] For Travis CI: a more recent numpy for Python 3.7 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bdf2971..f25303a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,8 @@ python: # https://github.com/brandon-rhodes/python-jplephem/issues/35 install: - - "pip install numpy==1.11.3 unittest2" + - "if [[ $TRAVIS_PYTHON_VERSION < 3.7 ]] ; then pip install numpy==1.11.3 ; else pip install numpy ; fi" + - "pip install unittest2" - "python setup.py sdist" - "mv jplephem trash" - "pip install dist/jplephem-*.tar.gz"