From e546dc8b5821cc30f08b823c96578055bc067e11 Mon Sep 17 00:00:00 2001 From: Keewis Date: Sat, 4 Jul 2020 14:16:17 +0200 Subject: [PATCH 1/4] fix a link --- doc/whats-new.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 378dfb30f25..b33f817e9e1 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -59,7 +59,7 @@ Enhancements coordinate attributes (:pull:`4103`). By `Oriol Abril `_. - Axes kwargs such as ``facecolor`` can now be passed to :py:meth:`DataArray.plot` in ``subplot_kws``. This works for both single axes plots and FacetGrid plots. - By `Raphael Dussin `_. New Features ~~~~~~~~~~~~ From 601c246833ebf283fe8e2442e6d0786eff82d164 Mon Sep 17 00:00:00 2001 From: Keewis Date: Sat, 4 Jul 2020 14:16:27 +0200 Subject: [PATCH 2/4] remove the earlier attempts to document .str and .dt --- doc/api.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/api.rst b/doc/api.rst index 603e3e8f6cf..72a6dd4d97a 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -360,7 +360,6 @@ Computation DataArray.rolling_exp DataArray.weighted DataArray.coarsen - DataArray.dt DataArray.resample DataArray.get_axis_num DataArray.diff @@ -369,7 +368,6 @@ Computation DataArray.differentiate DataArray.integrate DataArray.polyfit - DataArray.str DataArray.map_blocks From a13b69c1fc80493f87bb7da41d0afc12a44ded0e Mon Sep 17 00:00:00 2001 From: Keewis Date: Sat, 4 Jul 2020 14:17:23 +0200 Subject: [PATCH 3/4] fail warnings on RTD --- readthedocs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readthedocs.yml b/readthedocs.yml index 88aee82a44b..e20a9b99c14 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -6,4 +6,7 @@ build: conda: environment: ci/requirements/doc.yml +sphinx: + fail_on_warning: True + formats: [] From 6a6b209ffa5f1416ed87752b9e077f787edfbba0 Mon Sep 17 00:00:00 2001 From: Keewis Date: Sun, 5 Jul 2020 00:01:28 +0200 Subject: [PATCH 4/4] disable fail_on_warning again --- readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs.yml b/readthedocs.yml index e20a9b99c14..88abb57ae43 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -7,6 +7,6 @@ conda: environment: ci/requirements/doc.yml sphinx: - fail_on_warning: True + fail_on_warning: false formats: []