Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 5 additions & 1 deletion 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 Down Expand Up @@ -107,6 +108,9 @@ Internal Changes
- 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>`_


.. _whats-new.0.14.0:

Expand Down