From c65c1725cb283aa67d8fca00f46aeb85a15fd83f Mon Sep 17 00:00:00 2001 From: Stephen L Date: Sun, 11 Oct 2015 22:07:12 +0200 Subject: [PATCH] Fix for PyPi Signed-off-by: Stephen L. --- README.rst | 1 + tqdm/_version.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 72ed5f66..e691cc40 100644 --- a/README.rst +++ b/README.rst @@ -47,6 +47,7 @@ Latest development release on github Pull and install in the current directory: .. code:: sh + pip install -e git+https://github.com/tqdm/tqdm.git@master#egg=tqdm Documentation diff --git a/tqdm/_version.py b/tqdm/_version.py index 6e613598..629eda73 100644 --- a/tqdm/_version.py +++ b/tqdm/_version.py @@ -1,5 +1,5 @@ # Definition of the version number -version_info = 2, 0, 0, 'dev' # major, minor, patch, extra +version_info = 2, 0, 0, 'dev0' # major, minor, patch, extra # Nice string for the version (mimic how IPython composes its version str) __version__ = '-'.join(map(str, version_info)).replace('-', '.').strip('-')