diff --git a/README.md b/README.md index 10ce08e..c7d91e1 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Lastly, we have extended the framework to provide a model for asymmetric diffusi ### What's new in -#### version 0.8.0 +#### version 0.8.1 * Asymmetric diffusion model: class `AssymetricFit`. Also usable from the CLI and the streamlit app. @@ -70,25 +70,25 @@ Note that `diffusion-fit` has the following core dependencies: * [plotly](https://plotly.com/) ### pip install -You can install `diffusionfit` version 0.8.0 with `pip` sourced from the GitHub repo: +You can install `diffusionfit` version 0.8.1 with `pip` sourced from the GitHub repo: ##### with git installed: Fresh install: ``` -pip install git+https://github.com/NTBEL/diffusion-fit@v0.8.0 +pip install git+https://github.com/NTBEL/diffusion-fit@v0.8.1 ``` Or to upgrade from an older version: ``` -pip install --upgrade git+https://github.com/NTBEL/diffusion-fit@v0.8.0 +pip install --upgrade git+https://github.com/NTBEL/diffusion-fit@v0.8.1 ``` ##### without git installed: Fresh install: ``` -pip install https://github.com/NTBEL/diffusion-fit/archive/refs/tags/v0.8.0.zip +pip install https://github.com/NTBEL/diffusion-fit/archive/refs/tags/v0.8.1.zip ``` Or to upgrade from an older version: ``` -pip install --upgrade https://github.com/NTBEL/diffusion-fit/archive/refs/tags/v0.8.0.zip +pip install --upgrade https://github.com/NTBEL/diffusion-fit/archive/refs/tags/v0.8.1.zip ``` ### Manual install First, download the repository. Then from the `diffusion-fit` folder/directory run diff --git a/setup.py b/setup.py index 2fadad3..729ba39 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="diffusionfit", - version="0.8.0", + version="0.8.1", python_requires=">=3.9", install_requires=[ "numpy", @@ -15,7 +15,8 @@ "seaborn", "pandas", "numba", - "streamlit", + "streamlit==1.7.0", + "click==8.0.3", "plotly", ], author="Blake A. Wilson",