From 6dfbfffb7642ad224ce8ac6a6466518907dcd31f Mon Sep 17 00:00:00 2001 From: Greg Caporaso Date: Mon, 9 May 2016 08:11:40 -0700 Subject: [PATCH] REL: update version and install doc for release --- README.md | 2 +- setup.py | 4 ++-- sourcetracker/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0d8bfd6..a67a41c 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ To install SourceTracker 2 using Anaconda, run the following commands: ```bash conda create -n st2 python=3.5 numpy scipy h5py hdf5 source activate st2 -pip install https://github.com/biota/sourcetracker2/archive/master.zip +pip install sourcetracker ``` To test that your installation was successful, try the following command: diff --git a/setup.py b/setup.py index 7bf3a8e..d2381d0 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import find_packages, setup -__version__ = '2.0.0-dev' +__version__ = '2.0.1' classes = """ Development Status :: 1 - Planning @@ -28,7 +28,7 @@ description = "Python implementation of the SourceTracker R package." setup( - name='sourcetracker2', + name='sourcetracker', version=__version__, license='modified BSD', description=description, diff --git a/sourcetracker/__init__.py b/sourcetracker/__init__.py index bb73395..ffd4f0a 100644 --- a/sourcetracker/__init__.py +++ b/sourcetracker/__init__.py @@ -7,5 +7,5 @@ # The full license is in the file LICENSE, distributed with this software. # ---------------------------------------------------------------------------- -__version__ = '2.0.0-dev' +__version__ = '2.0.1' _readme_url = "https://github.com/biota/sourcetracker2/blob/master/README.md"