Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 62e79c03b6 |
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "dopt-basics"
|
name = "dopt-basics"
|
||||||
version = "0.2.3"
|
version = "0.2.4"
|
||||||
description = "basic cross-project tools for Python-based d-opt projects"
|
description = "basic cross-project tools for Python-based d-opt projects"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Florian Förster", email = "f.foerster@d-opt.com"},
|
{name = "Florian Förster", email = "f.foerster@d-opt.com"},
|
||||||
@ -69,7 +69,7 @@ directory = "reports/coverage"
|
|||||||
|
|
||||||
|
|
||||||
[tool.bumpversion]
|
[tool.bumpversion]
|
||||||
current_version = "0.2.3"
|
current_version = "0.2.4"
|
||||||
parse = """(?x)
|
parse = """(?x)
|
||||||
(?P<major>0|[1-9]\\d*)\\.
|
(?P<major>0|[1-9]\\d*)\\.
|
||||||
(?P<minor>0|[1-9]\\d*)\\.
|
(?P<minor>0|[1-9]\\d*)\\.
|
||||||
|
|||||||
@ -81,6 +81,9 @@ class LoadingAnimation:
|
|||||||
self,
|
self,
|
||||||
interrupt: bool = False,
|
interrupt: bool = False,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
if self.done:
|
||||||
|
return
|
||||||
|
|
||||||
self.done = True
|
self.done = True
|
||||||
if self._do_animation:
|
if self._do_animation:
|
||||||
self._thread.join()
|
self._thread.join()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user