Upgrade to release 0.27.0:

- trio.move_on_after and trio.fail_after previously set the deadline
  relative to initialization time, instead of more intuitively upon
  entering the context manager.
- CancelScope.relative_deadline and CancelScope.is_relative added,
  as well as a relative_deadline parameter to __init__. This allows
  initializing scopes ahead of time, but where the specified
  relative deadline doesn't count down until the scope is entered
- trio.Lock and trio.StrictFIFOLock will now raise
  trio.BrokenResourceError when trio.Lock.acquire would previously
  stall due to the owner of the lock exiting without releasing the
  lock
- trio.move_on_at, trio.move_on_after, trio.fail_at and
  trio.fail_after now accept shield as a keyword argument. If
  specified, it provides an initial value for the
  ~trio.CancelScope.shield attribute of the trio.CancelScope
  object created by the context manager
- Added trio.lowlevel.add_parking_lot_breaker and
  trio.lowlevel.remove_parking_lot_breaker to allow creating
  custom lock/semaphore implementations that will break their
  underlying parking lot if a task exits unexpectedly.
  trio.lowlevel.ParkingLot.break_lot is also added, to allow
  breaking a parking lot intentionally
- Allow sockets to bind any os.PathLike object
- Update trio.lowlevel.open_process's documentation to allow bytes
- Update trio.sleep_forever to be NoReturn

Signed-off-by: Leon Anavi <[email protected]>
---
 ...{python3-trio_0.26.2.bb => python3-trio_0.27.0.bb} | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-trio_0.26.2.bb => 
python3-trio_0.27.0.bb} (66%)

diff --git a/meta-python/recipes-devtools/python/python3-trio_0.26.2.bb 
b/meta-python/recipes-devtools/python/python3-trio_0.27.0.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python3-trio_0.26.2.bb
rename to meta-python/recipes-devtools/python/python3-trio_0.27.0.bb
index 1272606f6..524e439d4 100644
--- a/meta-python/recipes-devtools/python/python3-trio_0.26.2.bb
+++ b/meta-python/recipes-devtools/python/python3-trio_0.27.0.bb
@@ -5,9 +5,14 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=447ea202d14d2aee40d8a2c26c865da9 \
                     
file://LICENSE.APACHE2;md5=3b83ef96387f14655fc854ddc3c6bd57 \
                     file://LICENSE.MIT;md5=5f229c828e5a6f0a2ce90c7d3c054721"
 
-SRC_URI[sha256sum] = 
"0346c3852c15e5c7d40ea15972c4805689ef2cb8b5206f794c9c19450119f3a4"
+SRC_URI[sha256sum] = 
"1dcc95ab1726b2da054afea8fd761af74bad79bd52381b84eae408e983c76831"
 
 inherit pypi python_setuptools_build_meta
 
-PYPI_PACKAGE = "trio"
-RDEPENDS:${PN} = "python3-idna python3-sniffio"
+RDEPENDS:${PN} = " \
+       python3-idna \
+       python3-sniffio \
+       python3-attrs \
+       python3-outcome \
+       python3-sortedcontainers \
+"
-- 
2.39.5

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#113149): 
https://lists.openembedded.org/g/openembedded-devel/message/113149
Mute This Topic: https://lists.openembedded.org/mt/109169428/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to