Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conda badge #26

Merged
merged 4 commits into from
Nov 25, 2023
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
23 changes: 13 additions & 10 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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/

Expand All @@ -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
Expand All @@ -27,14 +30,8 @@ lsbi: Linear Simulation Based Inference
:alt: License information





``lsbi``

A repository for linear modelling and simulation based inference


UNDER CONSTRUCTION


Expand All @@ -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

Expand All @@ -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


Expand Down
2 changes: 1 addition & 1 deletion lsbi/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.4"
__version__ = "0.9.5"
Loading