Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
conda_env: py36
py37:
conda_env: py37
py38:
conda_env: py38
py37-upstream-dev:
conda_env: py37
upstream_dev: true
Expand Down
15 changes: 15 additions & 0 deletions ci/requirements/py38.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: xarray-tests
channels:
- conda-forge
dependencies:
- python=3.8
- pip
- pip:
- coveralls
- dask
- distributed
- numpy
- pandas
- pytest
- pytest-cov
- pytest-env
8 changes: 6 additions & 2 deletions doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ Bug fixes

Documentation
~~~~~~~~~~~~~
- Fix leap year condition in example (http://xarray.pydata.org/en/stable/examples/monthly-means.html) by `Mickaël Lalande <https://github.com/mickaellalande>`_.
- Fix leap year condition in example (http://xarray.pydata.org/en/stable/examples/monthly-means.html)
by `Mickaël Lalande <https://github.com/mickaellalande>`_.
- Fix the documentation of :py:meth:`DataArray.resample` and
:py:meth:`Dataset.resample` and explicitly state that a
datetime-like dimension is required. (:pull:`3400`)
Expand All @@ -104,7 +105,10 @@ Internal Changes
``pip install git+https://github.com/andrewgsavage/pint.git@refs/pull/6/head)``.
Even with it, interaction with non-numpy array libraries, e.g. dask or sparse, is broken.

- Use Python 3.6 idioms throughout the codebase. (:pull:3419)
- Use Python 3.6 idioms throughout the codebase. (:pull:`3419`)
By `Maximilian Roos <https://github.com/max-sixty>`_

- Run basic CI tests on Python 3.8. (:pull:`3477`)
By `Maximilian Roos <https://github.com/max-sixty>`_


Expand Down