From 29b35cee5fd117004a499386a45459ac57c47a95 Mon Sep 17 00:00:00 2001 From: Oriol Abril-Pla Date: Sun, 21 Feb 2021 21:12:04 +0200 Subject: [PATCH] Bump version to 0.11.2 (#1577) * bump version * pylint temporal fix * fix tests --- .pylintrc | 2 ++ CHANGELOG.md | 10 +++++++++- arviz/__init__.py | 2 +- arviz/tests/base_tests/test_plots_matplotlib.py | 6 +++--- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.pylintrc b/.pylintrc index f629f9ed8d..fef8890b66 100644 --- a/.pylintrc +++ b/.pylintrc @@ -72,6 +72,8 @@ disable=missing-docstring, ungrouped-imports, not-an-iterable, no-member, + use-a-generator, + consider-using-generator, #TODO: Remove this once todos are done fixme diff --git a/CHANGELOG.md b/CHANGELOG.md index f3a6351a3e..045bb4490f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## v0.x.x Unreleased ### New features + +### Maintenance and fixes + +### Deprecation + +### Documentation + +## v0.11.2 (2021 Feb 21) +### New features * Added `to_zarr` and `from_zarr` methods to InferenceData ([1518](https://github.com/arviz-devs/arviz/pull/1518)) * Added confidence interval band to auto-correlation plot ([1535](https://github.com/arviz-devs/arviz/pull/1535)) @@ -12,7 +21,6 @@ * Added significant digits formatter to round rope values ([1569](https://github.com/arviz-devs/arviz/pull/1569)) * Updated `from_cmdstan`. csv reader, dtype problem fixed and dtype kwarg added for manual dtype casting ([1565](https://github.com/arviz-devs/arviz/pull/1565)) - ### Deprecation * Removed Geweke diagnostic ([1545](https://github.com/arviz-devs/arviz/pull/1545)) * Removed credible_interval and include_circ arguments ([1548](https://github.com/arviz-devs/arviz/pull/1548)) diff --git a/arviz/__init__.py b/arviz/__init__.py index 56002c4e6b..5420505ff1 100644 --- a/arviz/__init__.py +++ b/arviz/__init__.py @@ -1,6 +1,6 @@ # pylint: disable=wildcard-import,invalid-name,wrong-import-position """ArviZ is a library for exploratory analysis of Bayesian models.""" -__version__ = "0.11.1" +__version__ = "0.11.2" import logging import os diff --git a/arviz/tests/base_tests/test_plots_matplotlib.py b/arviz/tests/base_tests/test_plots_matplotlib.py index 0681ab73f7..ee1ae3deed 100644 --- a/arviz/tests/base_tests/test_plots_matplotlib.py +++ b/arviz/tests/base_tests/test_plots_matplotlib.py @@ -501,12 +501,12 @@ def test_plot_kde_inference_data(models): "divergences": True, "coords": {"theta_dim_0": [0, 1]}, "scatter_kwargs": {"marker": "x"}, - "divergences_kwargs": {"marker": "*", "c": "C"}, + "divergences_kwargs": {"marker": "*", "c": "C0"}, }, { "divergences": True, "scatter_kwargs": {"marker": "x"}, - "divergences_kwargs": {"marker": "*", "c": "C"}, + "divergences_kwargs": {"marker": "*", "c": "C0"}, "var_names": ["theta", "mu"], }, {"kind": "kde", "var_names": ["theta"]}, @@ -523,7 +523,7 @@ def test_plot_kde_inference_data(models): { "point_estimate": "mean", "reference_values": {"mu": 0, "tau": 0}, - "reference_values_kwargs": {"c": "C", "marker": "*"}, + "reference_values_kwargs": {"c": "C0", "marker": "*"}, }, ], )