From eca7c4378de61006a3f50648ddcfab9ad2455b12 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Mon, 13 Jul 2015 11:36:18 +0100 Subject: [PATCH 1/4] Update readme to reflect unfortunate pypi status --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 80ae8e78..07bb0202 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,10 @@ version is much more visually appealing. ## Installation ```sh -pip install tqdm -# or +# newer, faster, prettier, stable version pip install -e git+https://github.com/tqdm/tqdm.git#egg=master +# or (old version on pypi) +pip install tqdm ``` ## Documentation From 7f81f8f64bb2cf715d8c3abeda23077345b090d1 Mon Sep 17 00:00:00 2001 From: Socialery Date: Tue, 14 Jul 2015 17:38:04 +0930 Subject: [PATCH 2/4] #egg to refer to the project name, not the branch name https://pip.pypa.io/en/latest/reference/pip_install.html#vcs-support > The "project name" component of the url suffix "egg=-" is used by pip in its dependency logic to identify the project prior to pip downloading and analyzing the metadata. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 07bb0202..5c5d3f61 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ version is much more visually appealing. ```sh # newer, faster, prettier, stable version -pip install -e git+https://github.com/tqdm/tqdm.git#egg=master +pip install -e git+https://github.com/tqdm/tqdm.git#egg=tqdm # or (old version on pypi) pip install tqdm ``` From 01667314e2e3abf461f3ef32ed727fb63cbfa86d Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Tue, 14 Jul 2015 09:26:46 +0100 Subject: [PATCH 3/4] slightly more specific egg syntax --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c5d3f61..2a12b7b6 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ version is much more visually appealing. ```sh # newer, faster, prettier, stable version -pip install -e git+https://github.com/tqdm/tqdm.git#egg=tqdm +pip install -e git+https://github.com/tqdm/tqdm.git@master#egg=tqdm-2.0 # or (old version on pypi) pip install tqdm ``` From c31f80de96a06bff01ef0b591148e48b81326e89 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Tue, 14 Jul 2015 09:54:37 +0100 Subject: [PATCH 4/4] removed 0-sloc "authors" --- README.md | 3 --- tqdm/_tqdm.py | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e8cedf4a..bc06a883 100644 --- a/README.md +++ b/README.md @@ -104,10 +104,7 @@ $ make coverage ## Authors - noamraph (original author) -- JackMc -- arkottke - obiwanus -- fordhurley - kmike - hadim - casperdcl diff --git a/tqdm/_tqdm.py b/tqdm/_tqdm.py index c420726c..8177981b 100644 --- a/tqdm/_tqdm.py +++ b/tqdm/_tqdm.py @@ -13,8 +13,8 @@ import sys import time -__author__ = {"github.com/": ["noamraph", "JackMc", "arkottke", "obiwanus", - "fordhurley", "kmike", "hadim", "casperdcl"]} +__author__ = {"github.com/": ["noamraph", "obiwanus", "kmike", "hadim", + "casperdcl"]} __all__ = ['tqdm', 'trange', 'format_interval', 'format_meter']