diff --git a/README.rst b/README.rst index ce0d42a..9886fad 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ lsbi: Linear Simulation Based Inference ======================================= :lsbi: Linear Simulation Based Inference :Author: Will Handley & David Yallup -:Version: 0.9.4 +:Version: 0.9.5 :Homepage: https://github.com/handley-lab/lsbi :Documentation: http://lsbi.readthedocs.io/ @@ -19,6 +19,9 @@ lsbi: Linear Simulation Based Inference .. image:: https://badge.fury.io/py/lsbi.svg :target: https://badge.fury.io/py/lsbi :alt: PyPi location +.. image:: https://anaconda.org/handley-lab/lsbi/badges/version.svg + :target: https://anaconda.org/handley-lab/lsbi + :alt: Conda location .. image:: https://zenodo.org/badge/705730277.svg :target: https://zenodo.org/doi/10.5281/zenodo.10009816 :alt: Permanent DOI for this release @@ -27,14 +30,8 @@ lsbi: Linear Simulation Based Inference :alt: License information - - - -``lsbi`` - A repository for linear modelling and simulation based inference - UNDER CONSTRUCTION @@ -50,7 +47,13 @@ Installation pip install lsbi -or via the setup.py +via conda + +.. code:: bash + + conda install -c handley-lab lsbi + +or via the github repository .. code:: bash @@ -62,9 +65,9 @@ You can check that things are working by running the test suite: .. code:: bash - export MPLBACKEND=Agg # only necessary for OSX users python -m pytest - flake8 lsbi tests + black . + isort --profile black . pydocstyle --convention=numpy lsbi diff --git a/lsbi/_version.py b/lsbi/_version.py index e94731c..f8c6ac7 100644 --- a/lsbi/_version.py +++ b/lsbi/_version.py @@ -1 +1 @@ -__version__ = "0.9.4" +__version__ = "0.9.5"