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('-')