Skip to content

Commit 312ea14

Browse files
committed
Merge remote-tracking branch 'upstream/master' into interp-na-maxgap
* upstream/master: Whatsnew for pydata#3419 (pydata#3422) Revert changes made in pydata#3358 (pydata#3411) Python3.6 idioms (pydata#3419) Temporarily mark pseudonetcdf-3.1 as incompatible (pydata#3420) Fix and add test for groupby_bins() isnan TypeError. (pydata#3405) Update where docstring to make return value type more clear (pydata#3408) tests for arrays with units (pydata#3238) Fixes to the resample docs (pydata#3400)
2 parents 980f475 + b0c336f commit 312ea14

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1925
-233
lines changed

ci/requirements/py36-min-all-deps.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ dependencies:
3131
- numba=0.44
3232
- numpy=1.14
3333
- pandas=0.24
34+
# - pint # See py36-min-nep18.yml
3435
- pip
3536
- pseudonetcdf=3.0
3637
- pydap=3.2

ci/requirements/py36-min-nep18.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ name: xarray-tests
22
channels:
33
- conda-forge
44
dependencies:
5-
# Optional dependencies that require NEP18, such as sparse,
5+
# Optional dependencies that require NEP18, such as sparse and pint,
66
# require drastically newer packages than everything else
77
- python=3.6
88
- coveralls
99
- dask=2.4
1010
- distributed=2.4
1111
- numpy=1.17
1212
- pandas=0.24
13+
- pint=0.9 # Actually not enough as it doesn't implement __array_function__yet!
1314
- pytest
1415
- pytest-cov
1516
- pytest-env

ci/requirements/py36.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ dependencies:
2727
- numba
2828
- numpy
2929
- pandas
30+
- pint
3031
- pip
31-
- pseudonetcdf
32+
- pseudonetcdf<3.1 # FIXME https://github.com/pydata/xarray/issues/3409
3233
- pydap
3334
- pynio
3435
- pytest

ci/requirements/py37-windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ dependencies:
2727
- numba
2828
- numpy
2929
- pandas
30+
- pint
3031
- pip
31-
- pseudonetcdf
32+
- pseudonetcdf<3.1 # FIXME https://github.com/pydata/xarray/issues/3409
3233
- pydap
3334
# - pynio # Not available on Windows
3435
- pytest

ci/requirements/py37.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ dependencies:
2727
- numba
2828
- numpy
2929
- pandas
30+
- pint
3031
- pip
31-
- pseudonetcdf
32+
- pseudonetcdf<3.1 # FIXME https://github.com/pydata/xarray/issues/3409
3233
- pydap
3334
- pynio
3435
- pytest

doc/gallery/plot_cartopy_facetgrid.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
==================================
43
Multiple plots and map projections

doc/gallery/plot_colorbar_center.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
==================
43
Centered colormaps

doc/gallery/plot_control_colorbar.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
===========================
43
Control the plot's colorbar

doc/gallery/plot_lines_from_2d.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
==================================
43
Multiple lines from a 2d DataArray

doc/gallery/plot_rasterio.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
.. _recipes.rasterio:
43

0 commit comments

Comments
 (0)