Skip to content

Commit

Permalink
Minor cleanup for 0.1.1 release (#11)
Browse files Browse the repository at this point in the history
* update whats new

* update ci config to include other numpy versions

* Update environment-py36-numpy1.17.yml
  • Loading branch information
rabernat authored Aug 23, 2019
1 parent b8ede57 commit c53fea6
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ notifications:
matrix:
fast_finish: true
include:
- python: 3.6
env: CONDA_ENV="ci/environment-py36-numpy1.16.yml" DOCTEST=false
- python: 3.6
env: CONDA_ENV="ci/environment-py36-numpy1.17.yml" DOCTEST=false
- python: 3.6
env: CONDA_ENV="ci/environment-py36.yml" DOCTEST=false
- python: 3.6
Expand Down
10 changes: 10 additions & 0 deletions ci/environment-py36-numpy1.16.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: xhistogram_test_env
dependencies:
- python=3.6
- xarray
- dask
- numpy==1.16
- pytest
- pip:
- codecov
- pytest-cov
12 changes: 12 additions & 0 deletions ci/environment-py36-numpy1.17.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: xhistogram_test_env
channels:
- conda-forge
dependencies:
- python=3.6
- xarray
- dask
- numpy==1.17
- pytest
- pip:
- codecov
- pytest-cov
2 changes: 1 addition & 1 deletion ci/environment-py36.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dependencies:
- python=3.6
- xarray
- dask
- numpy>=1.16
- numpy
- pytest
- pip:
- codecov
Expand Down
11 changes: 11 additions & 0 deletions doc/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ GitHub repo: `https://github.com/xgcm/xhistogram <https://github.com/xgcm/xhisto
Release History
---------------

v0.1.1
~~~~~~

Minor bugfix release

- Imroved documentation examples.
By `Dhruv Balwada <https://github.com/dhruvbalwada>`_.
- Fixed issue :issue:`5` related to incorrect dimension order
and dropping of dimension coordinates.
By `Ryan Abernathey <https://github.com/rabernat>`_.

v0.1
~~~~

Expand Down

0 comments on commit c53fea6

Please sign in to comment.