diff --git a/doc/setup/meta.yaml b/doc/setup/meta.yaml index d666d50..640fde8 100644 --- a/doc/setup/meta.yaml +++ b/doc/setup/meta.yaml @@ -1,5 +1,5 @@ {% set name = "kanga" %} -{% set version = "0.0.18" %} +{% set version = "0.0.19" %} package: name: "{{ name|lower }}" diff --git a/kanga/__init__.py b/kanga/__init__.py index d9fc5d6..f12684f 100644 --- a/kanga/__init__.py +++ b/kanga/__init__.py @@ -1 +1 @@ -__version__ = '0.0.18' +__version__ = '0.0.19' diff --git a/requirements.txt b/requirements.txt index 84f2a57..849c6b9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ numpy>=1.19.2 scipy>=1.5.2 statsmodels>=0.12.0 -matplotlib-base>=3.3.3 +matplotlib>=3.3.3 seaborn>=0.11.0 diff --git a/setup.py b/setup.py index e5dd507..263fd90 100644 --- a/setup.py +++ b/setup.py @@ -31,5 +31,5 @@ ], keywords=['Bayesian', 'diagnostics', 'Markov chains', 'MCMC', 'Monte Carlo'], python_requires='>=3.6', - install_requires=['numpy>=1.19.2', 'scipy>=1.5.2', 'statsmodels>=0.12.0', 'matplotlib-base>=3.3.3', 'seaborn>=0.11.0'] + install_requires=['numpy>=1.19.2', 'scipy>=1.5.2', 'statsmodels>=0.12.0', 'matplotlib>=3.3.3', 'seaborn>=0.11.0'] )