* update python-anyio to 4.7.0-1
This commit is contained in:
parent
44a40a4e8f
commit
8d1ef4f079
@ -1,7 +1,7 @@
|
||||
pkgbase = python-anyio
|
||||
pkgdesc = High level compatibility layer for multiple asynchronous event loop implementations
|
||||
pkgver = 4.6.2.post1
|
||||
pkgrel = 2
|
||||
pkgver = 4.7.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/agronholm/anyio
|
||||
arch = any
|
||||
license = MIT
|
||||
@ -25,9 +25,9 @@ pkgbase = python-anyio
|
||||
optdepends = python-outcome: trio backend
|
||||
optdepends = python-uvloop: use uvloop for asyncio backend
|
||||
optdepends = python-pytest: pytest plugin
|
||||
source = https://github.com/agronholm/anyio/archive/4.6.2.post1/anyio-4.6.2.post1.tar.gz
|
||||
source = https://github.com/agronholm/anyio/archive/4.7.0/anyio-4.7.0.tar.gz
|
||||
source = no-exceptiongroup.diff
|
||||
sha256sums = aae56b725ba03ba3005f47b27c1d8c70c9d89d30f706ce9624a9b89edcf25308
|
||||
sha256sums = 72658edd045a382790a3218736c641d2b6e16e4b464137b4fb01e488112ca609
|
||||
sha256sums = f60b4c7ba4281dafa34d90781bb270db0db3b7322a7334200925abddec61a44e
|
||||
sha256sums = 3f0b76ba8f7c8d79170701ab94746568b1cc121caa8f749a29568018ab88f036
|
||||
|
||||
pkgname = python-anyio
|
||||
|
@ -3,8 +3,8 @@
|
||||
|
||||
pkgname=python-anyio
|
||||
# https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst
|
||||
pkgver=4.6.2.post1
|
||||
pkgrel=2
|
||||
pkgver=4.7.0
|
||||
pkgrel=1
|
||||
pkgdesc='High level compatibility layer for multiple asynchronous event loop implementations'
|
||||
arch=(any)
|
||||
url='https://github.com/agronholm/anyio'
|
||||
@ -22,8 +22,8 @@ optdepends=(
|
||||
)
|
||||
source=(https://github.com/agronholm/anyio/archive/$pkgver/anyio-$pkgver.tar.gz
|
||||
no-exceptiongroup.diff)
|
||||
sha256sums=('aae56b725ba03ba3005f47b27c1d8c70c9d89d30f706ce9624a9b89edcf25308'
|
||||
'72658edd045a382790a3218736c641d2b6e16e4b464137b4fb01e488112ca609')
|
||||
sha256sums=('f60b4c7ba4281dafa34d90781bb270db0db3b7322a7334200925abddec61a44e'
|
||||
'3f0b76ba8f7c8d79170701ab94746568b1cc121caa8f749a29568018ab88f036')
|
||||
|
||||
export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
|
||||
|
||||
|
@ -6,10 +6,10 @@ index 11329df..acef11f 100644
|
||||
from typing import Any, NoReturn, cast
|
||||
|
||||
import pytest
|
||||
-from exceptiongroup import ExceptionGroup, catch
|
||||
-from exceptiongroup import catch
|
||||
from pytest import FixtureRequest
|
||||
from pytest_mock import MockerFixture
|
||||
|
||||
import anyio
|
||||
@@ -1330,8 +1329,10 @@ async def test_reraise_cancelled_in_excgroup() -> None:
|
||||
|
||||
with CancelScope() as scope:
|
||||
|
Loading…
x
Reference in New Issue
Block a user