Skip to content

Commit

Permalink
Release v0.1.2 on PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
mpariente committed Mar 15, 2020
1 parent ea39e3c commit 01525a4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,11 @@ pip install -e .
python setup.py develop
```
Asteroid is also on PyPI, you can install the latest release
with `pip install asteroid`

with
```
pip install numpy Cython
pip install asteroid
```

## Highlights
Here is a list of notebooks showing example usage of Asteroid's features.
Expand Down
2 changes: 1 addition & 1 deletion asteroid/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .engine import System

__version__ = '0.1.1'
__version__ = '0.1.2'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

asteroid_version = "0.1.1"
asteroid_version = "0.1.2"

with open("README.md", encoding='utf-8') as fh:
long_description = fh.read()
Expand Down

0 comments on commit 01525a4

Please sign in to comment.