Fix for PyPi

Signed-off-by: Stephen L. <lrq3000@gmail.com>
This commit is contained in:
Stephen L 2015-10-11 22:07:12 +02:00
parent 9e43e070be
commit c65c1725cb
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

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