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
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ recursive-include lib/iris/tests/results *.cml *.cdl *.txt *.xml *.json
recursive-include lib/iris/etc *
include lib/iris/fileformats/_pyke_rules/*.k?b
include lib/iris/tests/stock*.npz
exclude lib/iris/etc/site.cfg

include requirements/*.txt

# File required to build docs
recursive-include docs Makefile *.js *.png *.py *.rst
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Iris

[![Join the chat at https://gitter.im/SciTools/iris](https://badges.gitter.im/SciTools/iris.svg)](https://gitter.im/SciTools/iris?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://api.travis-ci.org/repositories/SciTools/iris.svg?branch=master)](https://travis-ci.org/SciTools/iris/branches)
[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.51860.svg)](https://dx.doi.org/10.5281/zenodo.51860)
[![DOI](https://zenodo.org/badge/5312648.svg)](https://zenodo.org/badge/latestdoi/5312648)
[![Documentation for master branch ](https://img.shields.io/badge/docs-master-blue.svg)](https://scitools-docs.github.io/iris/master/index.html)

(C) British Crown Copyright 2010 - 2018, Met Office
Expand Down
35 changes: 0 additions & 35 deletions docs/iris/src/developers_guide/dask_interface.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/iris/src/developers_guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,3 @@
tests.rst
deprecations.rst
release.rst
dask_interface.rst
13 changes: 7 additions & 6 deletions docs/iris/src/whatsnew/2.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -196,14 +196,15 @@ Incompatible Changes
functionality is now delivered through :mod:`iris-grib`.

* In Iris v1 it was possible to configure Iris to log at import time through
:attr:`iris.config.LOGGING`. This capability has been removed in iris v2.
`iris.config.LOGGING`. This capability has been removed in Iris v2.

* When coordinates have no well defined plot axis, iris.plot and iris.quickplot
routines now use the order of the cube's dimensions to determine the
coordinates to plot as the x and y axis of a plot.
* When coordinates have no well defined plot axis, :mod:`iris.plot` and
:mod:`iris.quickplot` routines now use the order of the cube's dimensions
to determine the coordinates to plot as the x and y axis of a plot.

* The cf_units dependency version has been updated to v1.2.0, which prints shorter
unit strings.
* The cf_units dependency version has been updated to v1.2.0, which prints
shorter unit strings. For example, the unit ``meter-second^-1`` is now
printed as ``m.s-1``.


Deprecation removals
Expand Down
1 change: 1 addition & 0 deletions requirements/core.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ cartopy
matplotlib<1.9
netcdf4
numpy
scipy
# pyke (not pip installable) #conda: pyke
cf_units
dask>=0.15.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def extract_version():
zip_safe=False,

setup_requires=pip_requirements('setup'),
install_requires=pip_requirements('core'),
install_requires=pip_requirements('setup') + pip_requirements('core'),
tests_require=['{}[test]'.format(pypi_name)],
extras_require = {
'test': pip_requirements('test'),
Expand Down