14
0
forked from pool/python-tqdm

Accepting request 840891 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/840891
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tqdm?expand=0&rev=83
This commit is contained in:
Tomáš Chvátal
2020-10-12 06:59:02 +00:00
committed by Git OBS Bridge
parent ba9c4449d6
commit 0a946f60c7
4 changed files with 39 additions and 4 deletions

View File

@@ -1,3 +1,38 @@
-------------------------------------------------------------------
Sat Oct 10 18:46:08 UTC 2020 - Arun Persaud <arun@gmx.de>
- update to version 4.50.2:
* fixed platform.system() causing fork() warnings (#691)
* fixed contrib.concurrent.process_map pickling error with
threading.RLock (#920)
* updated documentation & examples
* updated CI framework
* updated tests
* misc code tidy
- changes from version 4.50.1 :
* fix multiprocessing lock creation leak (#982, #936, #759)
+ fixes #617 which introduced this bug (v4.29.0, released
2019-01-06, undiagnosed until now) where multiple threads could
concurrently create and append process locks to a global list,
then try to release them without first acquiring 👿
* major test overhaul: fix, update, and speed up
* misc CI framework updates
* code linting
* minor documentation tidy
- changes from version 4.50.0:
* add bar colour option (#1040 <- #450)
+ for notebook as well as std/CLI
+ plain text as well as hex (e.g. 'green' or '#00ff00')
* notebook improvements (#1032 <- #1031)
+ split bar description into separate widget
+ improve reset() (handle width and colour)
* fix exceptions when file is closed (#1041, #1036 <- #1033)
* add & update tests
* minor documentation updates
* move and configure issue/pr templates
-------------------------------------------------------------------
Sat Sep 19 15:28:17 UTC 2020 - Arun Persaud <arun@gmx.de>