From 6b1a142ed0dce9c3bbb4883de4f1bab139b5da52 Mon Sep 17 00:00:00 2001 From: David Michaels Date: Thu, 18 Apr 2024 19:01:08 -0400 Subject: [PATCH] minor progress_bar update --- dcicutils/progress_bar.py | 4 +++- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dcicutils/progress_bar.py b/dcicutils/progress_bar.py index f4f64226e..1d9089ab8 100644 --- a/dcicutils/progress_bar.py +++ b/dcicutils/progress_bar.py @@ -336,6 +336,8 @@ def restore_stdout_write() -> None: # noqa if sys_stdout_write is not None: sys.stdout.write = sys_stdout_write sys.stdout.write = tidy_stdout_write - spina = ["|", "/", "—", "◦", "\\"] ; spini = 0 ; spinn = len(spina) # noqa + # spina = ["|", "/", "—", "◦", "\\"] + spina = ["⠿", "⠻", "⠽", "⠾", "⠷", "⠯", "⠟"] + spini = 0 ; spinn = len(spina) # noqa sentinel = "[progress]" ; sentinel_internal = f"{sentinel}:" # noqa return namedtuple("tidy_output_hack", ["restore", "sentinel"])(restore_stdout_write, sentinel) diff --git a/pyproject.toml b/pyproject.toml index 0ffca6b31..e8b6a03a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dcicutils" -version = "8.8.3.1b16" # TODO: To become 8.8.4 +version = "8.8.3.1b17" # TODO: To become 8.8.4 description = "Utility package for interacting with the 4DN Data Portal and other 4DN resources" authors = ["4DN-DCIC Team "] license = "MIT"