Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
cf798c5
Include multidimensional stacking groupby in docs (#2493) (#2536)
DaDaDaDaDaLi Nov 2, 2018
f788084
Zarr chunking (GH2300) (#2487)
lilyminium Nov 2, 2018
848d491
Deprecate inplace (#2524)
dcherian Nov 3, 2018
38399cc
Remove use of deprecated, unused keyword. (#2540)
alexamici Nov 5, 2018
421be44
Remove the old syntax for resample. (#2541)
shoyer Nov 5, 2018
55f21de
Stop loading tutorial data by default (#2538)
Nov 5, 2018
70f3b1c
Remove old-style resample example in documentation (#2543)
spencerkclark Nov 5, 2018
ee5983a
add full test env for py37 ci env (#2545)
Nov 6, 2018
eece515
Drop the hack needed to use CachingFileManager as we don't use it any…
alexamici Nov 6, 2018
efde852
DOC: update whatsnew for xarray 0.11 release (#2548)
shoyer Nov 7, 2018
bcb10b1
Release xarray v0.11
shoyer Nov 7, 2018
575e97a
revert to dev version for 0.11.1
shoyer Nov 7, 2018
f547ed0
Add libnetcdf, libhdf5, pydap and cfgrib to xarray.show_versions() (#…
shoyer Nov 14, 2018
70e9eb8
add missing , and article in error message (#2557)
gerritholl Nov 16, 2018
57fdcc5
DOC: fix computation.rst (#2567)
shoyer Nov 24, 2018
9d572a5
Return slices when possible from CFTimeIndex.get_loc() (#2569)
shoyer Nov 24, 2018
ecbf91f
python setup.py test now works by default (#2573)
horta Nov 25, 2018
a2a448d
DOC: remove example using Dataset.T (#2572)
shoyer Nov 26, 2018
483b8a0
Concat docstring typo (#2577)
max-sixty Nov 27, 2018
22a5763
Fix typo (#2578)
davidbrochart Nov 28, 2018
0d6056e
fix examples (#2581)
dcherian Nov 28, 2018
3ae93ac
Zarr consolidated (#2559)
rabernat Dec 4, 2018
77634d4
Minor update to PR template (#2596)
shoyer Dec 9, 2018
53746c9
Fix h5netcdf saving scalars with filters or chunks (#2591)
mraspaud Dec 11, 2018
5d8ef5f
Add dayofyear and dayofweek accessors (#2599)
spencerkclark Dec 11, 2018
6881503
Fix wrong error message in interp() (#2598)
lumbric Dec 11, 2018
23483ad
Temporarily mark dask-dev build as an allowed failure (#2602)
shoyer Dec 12, 2018
82789bc
use keep_attrs in binary operations II (#2590)
MBlaschek Dec 12, 2018
cbb32e1
Bump cftime version in doc environment (#2604)
spencerkclark Dec 13, 2018
2223445
Support HighLevelGraphs (#2603)
mrocklin Dec 13, 2018
9e8707d
Feature: N-dimensional auto_combine (#2553)
TomNicholas Dec 13, 2018
09494eb
fix a few typos in rst files (#2607)
visr Dec 14, 2018
f8cced7
Fix parsing '_Unsigned' attribute (#2584)
dcherian Dec 15, 2018
090564c
doc fixes. (#2611)
dcherian Dec 17, 2018
a4c9ab5
Remove meaningless tz argument in cftime_range (#2613)
spencerkclark Dec 18, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- [ ] Closes #xxxx (remove if there is no corresponding issue, which should only be the case for minor changes)
- [ ] Tests added (for all bug fixes or enhancements)
- [ ] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API (remove if this change should not be visible to users, e.g., if it is an internal clean-up, or if this is part of a larger project that will be documented later)
<!-- Feel free to remove check-list items aren't relevant to your change -->

- [ ] Closes #xxxx
- [ ] Tests added
- [ ] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API
2 changes: 1 addition & 1 deletion ci/requirements-py36-zarr-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ dependencies:
- pip:
- coveralls
- pytest-cov
- git+https://github.com/alimanfoo/zarr.git
- git+https://github.com/zarr-developers/zarr.git
29 changes: 23 additions & 6 deletions ci/requirements-py37.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@
name: test_env
channels:
- defaults
- conda-forge
dependencies:
- python=3.7
- cftime
- dask
- distributed
- h5py
- h5netcdf
- matplotlib
- netcdf4
- pytest
- flake8
- numpy
- pandas
- scipy
- seaborn
- toolz
- rasterio
- bottleneck
- zarr
- pseudonetcdf>=3.0.1
- eccodes
- pip:
- pytest
- flake8
- mock
- numpy
- pandas
- coveralls
- pytest-cov
- pydap
- lxml
- cfgrib>=0.9.2
2 changes: 1 addition & 1 deletion doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ Universal functions
.. warning::

With recent versions of numpy, dask and xarray, NumPy ufuncs are now
supported directly on all xarray and dask objects. This obliviates the need
supported directly on all xarray and dask objects. This obviates the need
for the ``xarray.ufuncs`` module, which should not be used for new code
unless compatibility with versions of NumPy prior to v1.13 is required.

Expand Down
9 changes: 4 additions & 5 deletions doc/computation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,8 @@ Note that rolling window aggregations are faster when bottleneck_ is installed.

We can also manually iterate through ``Rolling`` objects:

.. ipython:: python
.. code:: python

@verbatim
for label, arr_window in r:
# arr_window is a view of x

Expand Down Expand Up @@ -268,7 +267,7 @@ This means, for example, that you always subtract an array from its transpose:

c - c.T

You can explicitly broadcast xaray data structures by using the
You can explicitly broadcast xarray data structures by using the
:py:func:`~xarray.broadcast` function:

.. ipython:: python
Expand Down Expand Up @@ -298,9 +297,9 @@ operations. The default result of a binary operation is by the *intersection*
If coordinate values for a dimension are missing on either argument, all
matching dimensions must have the same size:

.. ipython:: python
.. ipython::
:verbatim:

@verbatim
In [1]: arr + xr.DataArray([1, 2], dims='x')
ValueError: arguments without labels along dimension 'x' cannot be aligned because they have different dimension size(s) {2} than the size of the aligned dimension labels: 3

Expand Down
Loading