moat-lib-micro 0.3.1__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moat-lib-micro
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: Compatibility layer for CPython/anyio and MicroPython/uasyncio
5
5
  Maintainer-email: Matthias Urlichs <matthias@urlichs.de>
6
6
  Project-URL: homepage, https://m-o-a-t.org
@@ -1,3 +1,15 @@
1
+ moat-lib-micro (0.3.2-1) unstable; urgency=medium
2
+
3
+ * New release for 26.1.10
4
+
5
+ -- Matthias Urlichs <matthias@urlichs.de> Thu, 23 Apr 2026 21:16:05 +0200
6
+
7
+ moat-lib-micro (0.3.1-2) unstable; urgency=medium
8
+
9
+ * New release for 26.0.12
10
+
11
+ -- Matthias Urlichs <matthias@urlichs.de> Wed, 04 Mar 2026 11:00:47 +0100
12
+
1
13
  moat-lib-micro (0.3.1-1) unstable; urgency=medium
2
14
 
3
15
  * New release for 26.0.11
@@ -21,7 +21,7 @@ name = "moat-lib-micro"
21
21
  maintainers = [{email = "matthias@urlichs.de",name = "Matthias Urlichs"}]
22
22
  description='Compatibility layer for CPython/anyio and MicroPython/uasyncio'
23
23
  readme = "README.md"
24
- version = "0.3.1"
24
+ version = "0.3.2"
25
25
 
26
26
  [project.urls]
27
27
  homepage = "https://m-o-a-t.org"
@@ -94,7 +94,7 @@ if TYPE_CHECKING:
94
94
  self,
95
95
  p: Callable[P, Awaitable[Any]],
96
96
  *a: P.args,
97
- _name: str | None = None,
97
+ _name: str | None = None, # ty:ignore[invalid-paramspec]
98
98
  **k: P.kwargs,
99
99
  ) -> _anyio.CancelScope: ...
100
100
 
@@ -102,7 +102,7 @@ if TYPE_CHECKING:
102
102
  self,
103
103
  p: Callable[P, Awaitable[Any]],
104
104
  *a: P.args,
105
- _name: str | None = None,
105
+ _name: str | None = None, # ty:ignore[invalid-paramspec]
106
106
  **k: P.kwargs,
107
107
  ) -> None: ...
108
108
 
@@ -397,7 +397,7 @@ def TaskGroup() -> _TaskGroupProto: # Returns augmented TaskGroup instance
397
397
  if tgt is not _tgt:
398
398
  _tgt = tgt
399
399
 
400
- class TaskGroup_(_tgt): # type: ignore[misc]
400
+ class TaskGroup_(_tgt): # ty:ignore[unsupported-base]
401
401
  """An augmented taskgroup"""
402
402
 
403
403
  async def spawn(
@@ -526,7 +526,7 @@ def ACM(obj: Any) -> Callable[[Any], Awaitable[Any]]:
526
526
  obj._AC_ = []
527
527
 
528
528
  cm = AsyncExitStack()
529
- cm._moat_ac_task = _ac_task_id() # noqa:SLF001 # type:ignore[unresolved-attribute]
529
+ cm._moat_ac_task = _ac_task_id() # noqa:SLF001 # ty:ignore[unresolved-attribute]
530
530
  obj._AC_.append(cm)
531
531
 
532
532
  # AsyncExitStack.__aenter__ is a no-op. We don't depend on that, but at
@@ -606,5 +606,5 @@ def is_async(obj: Any) -> bool:
606
606
  async def to_thread(p: Callable[..., R], *a, **k) -> R:
607
607
  """run this function in a thread"""
608
608
  if k:
609
- return await _anyio.to_thread.run_sync(partial(p, *a, **k), abandon_on_cancel=True) # type: ignore[attr-defined]
610
- return await _anyio.to_thread.run_sync(p, *a, abandon_on_cancel=True) # type: ignore[attr-defined]
609
+ return await _anyio.to_thread.run_sync(partial(p, *a, **k), abandon_on_cancel=True) # ty:ignore[unresolved-attribute]
610
+ return await _anyio.to_thread.run_sync(p, *a, abandon_on_cancel=True) # ty:ignore[unresolved-attribute]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moat-lib-micro
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: Compatibility layer for CPython/anyio and MicroPython/uasyncio
5
5
  Maintainer-email: Matthias Urlichs <matthias@urlichs.de>
6
6
  Project-URL: homepage, https://m-o-a-t.org
File without changes
File without changes
File without changes