Accepting request 461506 from home:TheBlackCat:branches:devel:languages:python
Update to 4.11.2 + Fixes BNC#1017485 + Fixes CVE#CVE-2016-10075 OBS-URL: https://build.opensuse.org/request/show/461506 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tqdm?expand=0&rev=3
This commit is contained in:
parent
a2719db099
commit
8160c56707
@ -1,3 +1,59 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 1 16:38:44 UTC 2017 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
- Update to 4.11.2
|
||||||
|
* thread safety #332
|
||||||
|
* address DeprecationWarning #319 -> #326
|
||||||
|
* version extra #328 -> #330
|
||||||
|
+ security fix
|
||||||
|
+ add non-master branch name
|
||||||
|
+ Fixes BNC#1017485
|
||||||
|
+ Fixes CVE#CVE-2016-10075
|
||||||
|
* minor safety
|
||||||
|
* minor documentation and comments
|
||||||
|
- Update to 4.11.1
|
||||||
|
* Officially support Python 3.6, addressing #333
|
||||||
|
- Update to 4.11.0
|
||||||
|
* postfix argument added #266->#270
|
||||||
|
* fix tests for
|
||||||
|
+ numpy #272->#302
|
||||||
|
+ PyPy3 #318->#325
|
||||||
|
* 7z extraction example script
|
||||||
|
* new logo #315
|
||||||
|
* hit counter with logo colours and stats
|
||||||
|
* documentation updates
|
||||||
|
* safer setup.py Makefile emulation
|
||||||
|
* better github contributions integrations and Code of Conduct #310
|
||||||
|
- update to version 4.10.0:
|
||||||
|
* fix maxinterval to adjust miniters to mininterval #249
|
||||||
|
* minor bugfixes (eg #288)
|
||||||
|
* misc optimisations, unit tests, and benchmarks (eg #298)
|
||||||
|
* documentation updates
|
||||||
|
- update to version 4.9.0:
|
||||||
|
* monitoring thread to automatically to adjust miniters and avoid
|
||||||
|
exceeding maxinterval
|
||||||
|
+ test race conditions
|
||||||
|
+ kill on KeyboardInterrupt + instant refresh
|
||||||
|
+ low performance overhead, option to disable
|
||||||
|
* new CLI argument: --bytes to count chars
|
||||||
|
* disable automatically on non-TTY (#281)
|
||||||
|
* fixed refresh() and clear() if disabled (#286)
|
||||||
|
* misc fixes
|
||||||
|
* documentation
|
||||||
|
* unit tests
|
||||||
|
* optimisations, style fixes
|
||||||
|
* codacy badge
|
||||||
|
* safety and warning suppression
|
||||||
|
* ignore coverall failures (#283)
|
||||||
|
* fix broken link in README (#262)
|
||||||
|
* Fix time() in refresh() + avoid write() races (#264)
|
||||||
|
* Fix __repr__() #269
|
||||||
|
* Fix update(0) causing ZeroDivisionError (on first call) #268
|
||||||
|
* Faster simple bar for perf test (#257)
|
||||||
|
* cleaner tqdm_notebook exit when not run in a notebook (#267)
|
||||||
|
* Disable coveralls because of duplicate comments on github (#263)
|
||||||
|
* Migrate codecov config -> codecov.yml
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 19 18:15:48 UTC 2016 - toddrme2178@gmail.com
|
Mon Sep 19 18:15:48 UTC 2016 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-tqdm
|
# spec file for package python-tqdm
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,19 +17,24 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python-tqdm
|
Name: python-tqdm
|
||||||
Version: 4.8.4
|
Version: 4.11.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A Fast, Extensible Progress Meter
|
Summary: A Fast, Extensible Progress Meter
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: https://github.com/tqdm/tqdm
|
Url: https://github.com/tqdm/tqdm
|
||||||
Source: https://files.pythonhosted.org/packages/source/t/tqdm/tqdm-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/t/tqdm/tqdm-%{version}.tar.gz
|
||||||
BuildRequires: python-coverage
|
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: python-flake8
|
|
||||||
BuildRequires: python-nose
|
|
||||||
BuildRequires: python-docopt
|
BuildRequires: python-docopt
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: python-setuptools
|
||||||
|
# Test requirements
|
||||||
|
BuildRequires: python-coverage
|
||||||
|
BuildRequires: python-Cython
|
||||||
|
BuildRequires: python-flake8
|
||||||
|
BuildRequires: python-mccabe
|
||||||
|
BuildRequires: python-nose
|
||||||
|
BuildRequires: python-numpy-devel
|
||||||
|
BuildRequires: python-pandas
|
||||||
Requires: python-docopt
|
Requires: python-docopt
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
@ -74,7 +79,7 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
python setup.py test
|
nosetests --ignore-files="tests_perf\.py"
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
|
3
tqdm-4.11.2.tar.gz
Normal file
3
tqdm-4.11.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:14baa7a9ea7723d46f60de5f8c6f20e840baa7e3e193bf0d9ec5fe9103a15254
|
||||||
|
size 100161
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:bab05f8bb6efd2702ab6c532e5e6a758a66c0d2f443e09784b73e4066e6b3a37
|
|
||||||
size 77229
|
|
Loading…
x
Reference in New Issue
Block a user