Skip to content

Commit

Permalink
Merge pull request #106 from sami2py/travis-nep029
Browse files Browse the repository at this point in the history
TST: NEP 029 compliance
  • Loading branch information
jklenzing committed Apr 14, 2020
2 parents c37bea4 + ce6e4e1 commit 609c736
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
os: linux
language: python
dist: xenial
matrix:
jobs:
include:
- name: Minimum NEP 029 versions
python: 3.6
env: NUMPY_VER=1.15
# Versions with latest numpy
- python: 3.6
- python: 3.7
- python: 3.8
Expand All @@ -14,13 +19,15 @@ addons:
- gfortran

before_install:
- if [ -z ${NUMPY_VER} ]; then
echo 'Using latest numpy';
else
pip install -q numpy==$NUMPY_VER;
fi
- pip install pytest-cov
- pip install pytest-flake8
- pip install coveralls
- pip install future
- pip install pandas
- pip install xarray
- pip install matplotlib

install:
- python setup.py install
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Stylistic updates to conform to flake8
- Testing changes
- Update Travis CI to use flake8 tests as part of CI
- Update Travis CI to test for numpy versions as in NEP 029

## [0.2.0] - 2019-12-17
- API changes
Expand Down

0 comments on commit 609c736

Please sign in to comment.