Accepting request 1003474 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/1003474
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Pebble?expand=0&rev=10
This commit is contained in:
2022-09-14 11:45:16 +00:00
committed by Git OBS Bridge
4 changed files with 29 additions and 12 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:694e1105db888f3576b8f00662f90b057cf3780e6f8b7f57955a568008d0f497
size 25888

3
Pebble-5.0.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:add2a07d71e666985f1bd024024787dd790f71f1a2dbb9f5fac037cbb358e0ce
size 28958

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Tue Sep 13 11:09:36 UTC 2022 - Martin Liška <mliska@suse.cz>
- Update to 5.0.0
* Backward incompatible changes:
+ issue #93: Python 2 is no longer compatible. Minimum supported
version is now 3.7.
* Deprecations:
+ issue #90: pools `schedule` method is now deprecated, use `submit`
instead.
* Features:
+ issue #90: pools are now compatible with asyncio APIs.
+ issue #94: asynchronous function decorators
+ issue #102: type hints have been added to all functionalities
+ issue #103: support alternative multiprocessing.context
implementations
* Fixes:
+ issue #99: fix deadlock when closing a full pipe on Windows in pool
- Require Python >= 3.7.
- Drop Python 2 support.
-------------------------------------------------------------------
Tue Aug 16 23:32:48 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>

View File

@@ -16,10 +16,8 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without python2
Name: python-Pebble
Version: 4.6.3
Version: 5.0.0
Release: 0
Summary: Threading and multiprocessing eye-candy for Python
License: LGPL-3.0-only
@@ -29,16 +27,11 @@ BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: git-core
BuildRequires: python-rpm-macros
BuildRequires: python3-base >= 3.7
BuildArch: noarch
%if %{with python2}
BuildRequires: python-futures
%endif
# SECTION test requirements
BuildRequires: %{python_module pytest}
# /SECTION
%ifpython2
Requires: python-futures
%endif
%python_subpackages
%description