Accepting request 676949 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/676949 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tqdm?expand=0&rev=18
This commit is contained in:
commit
76d088645a
@ -1,3 +1,72 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Feb 16 17:24:34 UTC 2019 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- update to version 4.31.1:
|
||||||
|
* fix file.encoding==None caused by #598 (#673 -> #676)
|
||||||
|
+ add tests
|
||||||
|
* tidy code, update authors and tests
|
||||||
|
+ add setup.py test to CI
|
||||||
|
|
||||||
|
- changes from version 4.31.0:
|
||||||
|
* Write bytes to stdout/stderr in py2
|
||||||
|
(https://bugs.python.org/issue21363, #589 -> #598)
|
||||||
|
+ Add write_bytes parameter for py2/3 default override
|
||||||
|
* support custom bar characters vias ascii parameter (#223 -> #227)
|
||||||
|
+ implement, document and test custom bar spinners
|
||||||
|
* support custom bar_format with unknown total (#282 -> #284)
|
||||||
|
* fix TypeError when unit_scale and unknown total
|
||||||
|
* document format_dict
|
||||||
|
* expose elapsed_s, remaining_s to bar_format
|
||||||
|
* add unit option to bar_format (#368)
|
||||||
|
* auto README.rst generation framework
|
||||||
|
+ add notes in CONTRIBUTING.md
|
||||||
|
* update tests
|
||||||
|
* update documentation
|
||||||
|
* misc code tidy
|
||||||
|
|
||||||
|
- changes from version 4.30.0:
|
||||||
|
* avoid moving when leave=False
|
||||||
|
* generalise nested bar tests
|
||||||
|
* add display() helper function
|
||||||
|
* add and expose format_dict (#562, #482, #494, #656)
|
||||||
|
+ allow arbitrary keyword arguments for format_meter
|
||||||
|
+ document format_dict overriding
|
||||||
|
+ add tests for overriding
|
||||||
|
+ related: #660 #172 #587
|
||||||
|
* add and tidy developer documentation
|
||||||
|
* fix py3 CLI pipe decoding error (#663)
|
||||||
|
* framework overhaul (developing, testing, Travis CI updates)
|
||||||
|
* tidy code and style (flake8)
|
||||||
|
* setup.py refactor
|
||||||
|
+ setup.py make
|
||||||
|
- add support for multi-line commands
|
||||||
|
- tidy and efficiency
|
||||||
|
+ replace setup.py's built-in make -> py-make>=0.1.9 (#290)
|
||||||
|
+ add requirements-dev.txt and extras_require[dev]
|
||||||
|
* add, update and tidy tests
|
||||||
|
* include interactive Jupyter demonstration (#652 -> #659)
|
||||||
|
* update documentation
|
||||||
|
+ add FAQ about py2 pipes (#359)
|
||||||
|
+ add badges
|
||||||
|
+ update examples
|
||||||
|
+ update authors
|
||||||
|
|
||||||
|
- changes from version 4.29.1:
|
||||||
|
* fix classmethod lock bug (#617: #457 -> #658)
|
||||||
|
* add unit test to prevent regression
|
||||||
|
|
||||||
|
- changes from version 4.29.0:
|
||||||
|
* Avoid global multiprocessing locks (#611 -> #617)
|
||||||
|
* Add support for infinite iterables (#651)
|
||||||
|
* Fix missing attr pos when used in multi-threaded environment
|
||||||
|
(#573)
|
||||||
|
* Do not join TMonitor if it is the current thread (#613 -> #641)
|
||||||
|
* Add OpenBSD NIX support (#638)
|
||||||
|
* Unit tests, general documentation fixes and tidying (e.g. #642)
|
||||||
|
* CI travis improvements
|
||||||
|
+ py37-dev -> py37 (#622)
|
||||||
|
+ fix py26
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 12 10:45:37 UTC 2019 - Matej Cepl <mcepl@suse.com>
|
Tue Feb 12 10:45:37 UTC 2019 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -21,14 +21,14 @@
|
|||||||
%global flavor @BUILD_FLAVOR@%{nil}
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
%if "%{flavor}" == "test"
|
%if "%{flavor}" == "test"
|
||||||
%define test 1
|
%define test 1
|
||||||
%bcond_without test
|
|
||||||
%define suffix -test
|
%define suffix -test
|
||||||
|
%bcond_without test
|
||||||
%else
|
%else
|
||||||
%bcond_with test
|
|
||||||
%define suffix %{nil}
|
%define suffix %{nil}
|
||||||
|
%bcond_with test
|
||||||
%endif
|
%endif
|
||||||
Name: python-tqdm%{suffix}
|
Name: python-tqdm%{suffix}
|
||||||
Version: 4.28.1
|
Version: 4.31.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An extensible progress meter
|
Summary: An extensible progress meter
|
||||||
License: MPL-2.0 AND MIT
|
License: MPL-2.0 AND MIT
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5b4d5549984503050883bc126280b386f5f4ca87e6c023c5d015655ad75bdebb
|
|
||||||
size 108389
|
|
3
tqdm-4.31.1.tar.gz
Normal file
3
tqdm-4.31.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e22977e3ebe961f72362f6ddfb9197cc531c9737aaf5f607ef09740c849ecd05
|
||||||
|
size 117178
|
Loading…
x
Reference in New Issue
Block a user