forked from pool/python-trio
Accepting request 1045129 from devel:languages:python
Forwarded request #1045068 from bnavigator - Try again with 0.22.0 and a fixed httpcore - go back to 0.21.0 as it breaks httpcore OBS-URL: https://build.opensuse.org/request/show/1045129 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-trio?expand=0&rev=13
This commit is contained in:
commit
ee6bea5062
@ -1,3 +1,31 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 23 18:15:34 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Try again with 0.22.0 and a fixed httpcore
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 19 20:55:58 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- go back to 0.21.0 as it breaks httpcore
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 7 10:18:12 UTC 2022 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Update to 0.22.0:
|
||||
* MultiError has been deprecated in favor of the standard BaseExceptionGroup
|
||||
(introduced in PEP 654). On Python versions below 3.11, this exception and
|
||||
its derivative ExceptionGroup are provided by the backport. Trio still
|
||||
raises MultiError, but it has been refactored into a subclass of
|
||||
BaseExceptionGroup which users should catch instead of MultiError. Uses of
|
||||
the MultiError.filter() class method should be replaced with
|
||||
BaseExceptionGroup.split(). Uses of the MultiError.catch() class method
|
||||
should be replaced with either except* clauses (on Python 3.11+) or the
|
||||
exceptiongroup.catch() context manager provided by the backport.
|
||||
See the updated documentation for details.
|
||||
# Features
|
||||
* Added support for Datagram TLS, for secure communication over UDP.
|
||||
Currently requires PyOpenSSL. (#2010)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 21 16:04:21 UTC 2022 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
|
@ -16,18 +16,18 @@
|
||||
#
|
||||
|
||||
|
||||
%define skip_python2 1
|
||||
Name: python-trio
|
||||
Version: 0.21.0
|
||||
Version: 0.22.0
|
||||
Release: 0
|
||||
Summary: Python async/await-native I/O library
|
||||
License: Apache-2.0 OR MIT
|
||||
URL: https://github.com/python-trio/trio
|
||||
Source: https://github.com/python-trio/trio/archive/v%{version}.tar.gz#/trio-%{version}.tar.gz
|
||||
Source: https://files.pythonhosted.org/packages/source/t/trio/trio-%{version}.tar.gz
|
||||
BuildRequires: %{python_module astor >= 0.8}
|
||||
BuildRequires: %{python_module async_generator >= 1.9}
|
||||
BuildRequires: %{python_module attrs >= 19.2.0}
|
||||
BuildRequires: %{python_module base >= 3.7}
|
||||
BuildRequires: %{python_module exceptiongroup >= 1.0.0~rc9 if %python-base < 3.11}
|
||||
BuildRequires: %{python_module idna}
|
||||
BuildRequires: %{python_module outcome}
|
||||
BuildRequires: %{python_module pyOpenSSL}
|
||||
@ -43,6 +43,9 @@ BuildRequires: netcfg
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-async_generator >= 1.9
|
||||
Requires: python-attrs >= 19.2.0
|
||||
%if 0%{?python_version_nodots} < 311
|
||||
Requires: python-exceptiongroup >= 1.0.0~rc9
|
||||
%endif
|
||||
Requires: python-idna
|
||||
Requires: python-outcome
|
||||
Requires: python-sniffio
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b37dade091c9da7b95b572643c56479c4a11596175b93ba3d6d7ff89993a40c5
|
||||
size 491228
|
BIN
trio-0.22.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
trio-0.22.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user