Skip to content

Commit

Permalink
Upgraded the verions number from 0.8.0 to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeaw committed Feb 23, 2023
1 parent 0733a97 commit cc4cc92
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="diffusionfit",
version="0.8.0",
version="0.8.1",
python_requires=">=3.9",
install_requires=[
"numpy",
Expand All @@ -15,7 +15,8 @@
"seaborn",
"pandas",
"numba",
"streamlit",
"streamlit==1.7.0",
"click==8.0.3",
"plotly",
],
author="Blake A. Wilson",
Expand Down

0 comments on commit cc4cc92

Please sign in to comment.