From 01525a436624c1058e37f4ff671ed199950f70d2 Mon Sep 17 00:00:00 2001 From: mpariente Date: Sun, 15 Mar 2020 14:17:57 +0100 Subject: [PATCH] Release v0.1.2 on PyPI --- README.md | 7 +++++-- asteroid/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 59a59af8a..979cd8c22 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/asteroid/__init__.py b/asteroid/__init__.py index c16fbd465..85752242e 100644 --- a/asteroid/__init__.py +++ b/asteroid/__init__.py @@ -1,3 +1,3 @@ from .engine import System -__version__ = '0.1.1' +__version__ = '0.1.2' diff --git a/setup.py b/setup.py index 1bdcef42e..b96bf78f0 100644 --- a/setup.py +++ b/setup.py @@ -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()