https://github.com/brandon-rhodes/python-jplephem
Revision 0788f792130ea0f268d96ae50d414a98d252ba8e authored by Brandon Rhodes on 19 July 2020, 00:22:35 UTC, committed by Brandon Rhodes on 19 July 2020, 00:22:35 UTC
1 parent 590dc62
Raw File
Tip revision: 0788f792130ea0f268d96ae50d414a98d252ba8e authored by Brandon Rhodes on 19 July 2020, 00:22:35 UTC
Add "Type N" to each ephemeris segment description
Tip revision: 0788f79
.travis.yml
# Config file for automatic testing at travis-ci.org

language: python

python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  - "3.7"

# The old version of NumPy installed here is in support of users who
# cannot upgrade relentlessly.
# https://github.com/brandon-rhodes/python-jplephem/issues/35

install:
  - "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"

script:
  - "cd ci"
  - "unit2 jplephem.test"
  - "python -m jplephem.jpltest"
back to top