From 2c343840ff8fdd6a6560336fb5a00724e1b027b9 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Tue, 12 Nov 2019 14:42:41 +0100 Subject: [PATCH 1/2] Removing myself again. Not sure what went wrong in https://github.com/pypa/pipenv/pull/3536. --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index a2c99f26..def7281f 100644 --- a/README.md +++ b/README.md @@ -63,12 +63,6 @@ Otherwise, refer to the [documentation](https://pipenv.kennethreitz.org/en/lates ☤ User Testimonials ------------------- -**Jannis Leidel**, former pip maintainer--- - -: *Pipenv is the porcelain I always wanted to build for pip. It fits - my brain and mostly replaces virtualenvwrapper and manual pip calls - for me. Use it.* - **David Gang**--- : *This package manager is really awesome. For the first time I know From 14fde9b4ea8fbf16dfed9cd9c2144556c614e95f Mon Sep 17 00:00:00 2001 From: Alfonso Ruzafa Date: Wed, 4 Dec 2019 23:00:30 +0100 Subject: [PATCH 2/2] honor PIPENV_SPINNER environment variable --- news/4045.bugfix.rst | 1 + pipenv/environments.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 news/4045.bugfix.rst diff --git a/news/4045.bugfix.rst b/news/4045.bugfix.rst new file mode 100644 index 00000000..6558018c --- /dev/null +++ b/news/4045.bugfix.rst @@ -0,0 +1 @@ +Honor PIPENV_SPINNER environment variable diff --git a/pipenv/environments.py b/pipenv/environments.py index e59ed63a..763a61a3 100644 --- a/pipenv/environments.py +++ b/pipenv/environments.py @@ -151,6 +151,7 @@ if PIPENV_IS_CI: PIPENV_NOSPIN = True PIPENV_SPINNER = "dots" if not os.name == "nt" else "bouncingBar" +PIPENV_SPINNER = os.environ.get("PIPENV_SPINNER", PIPENV_SPINNER) """Sets the default spinner type. Spinners are identitcal to the node.js spinners and can be found at