moat-lib-micro 0.3.2__tar.gz → 0.3.3__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.2
3
+ Version: 0.3.3
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,21 @@
1
+ moat-lib-micro (0.3.3-1) unstable; urgency=medium
2
+
3
+ * New release for 26.2.8
4
+
5
+ -- Matthias Urlichs <matthias@urlichs.de> Sat, 11 Jul 2026 03:15:29 +0200
6
+
7
+ moat-lib-micro (0.3.2-3) unstable; urgency=medium
8
+
9
+ * New release for 26.2.3
10
+
11
+ -- Matthias Urlichs <matthias@urlichs.de> Mon, 15 Jun 2026 17:44:46 +0200
12
+
13
+ moat-lib-micro (0.3.2-2) unstable; urgency=medium
14
+
15
+ * New release for 26.1.12
16
+
17
+ -- Matthias Urlichs <matthias@urlichs.de> Fri, 24 Apr 2026 15:38:47 +0200
18
+
1
19
  moat-lib-micro (0.3.2-1) unstable; urgency=medium
2
20
 
3
21
  * New release for 26.1.10
@@ -2,12 +2,11 @@ Source: moat-lib-micro
2
2
  Maintainer: "Matthias Urlichs" <matthias@urlichs.de>
3
3
  Section: python
4
4
  Priority: optional
5
- Build-Depends: dh-python, python3-all, debhelper (>= 13),
5
+ Build-Depends: dh-python, python3-all, debhelper (>= 13), debhelper-compat (= 13),
6
6
  python3-setuptools,
7
7
  python3-wheel,
8
8
  Standards-Version: 3.9.6
9
9
  Homepage: https://m-o-a-t.org
10
- X-DH-Compat: 13
11
10
 
12
11
  Package: python3-moat-lib-micro
13
12
  Architecture: all
@@ -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.2"
24
+ version = "0.3.3"
25
25
 
26
26
  [project.urls]
27
27
  homepage = "https://m-o-a-t.org"
@@ -92,18 +92,18 @@ if TYPE_CHECKING:
92
92
 
93
93
  async def spawn(
94
94
  self,
95
- p: Callable[P, Awaitable[Any]],
96
- *a: P.args,
97
- _name: str | None = None, # ty:ignore[invalid-paramspec]
98
- **k: P.kwargs,
95
+ p: Callable[..., Awaitable[Any]],
96
+ *a: Any,
97
+ _name: str | None = None,
98
+ **k: Any,
99
99
  ) -> _anyio.CancelScope: ...
100
100
 
101
101
  def start_soon(
102
102
  self,
103
- p: Callable[P, Awaitable[Any]],
104
- *a: P.args,
105
- _name: str | None = None, # ty:ignore[invalid-paramspec]
106
- **k: P.kwargs,
103
+ p: Callable[..., Awaitable[Any]],
104
+ *a: Any,
105
+ _name: str | None = None,
106
+ **k: Any,
107
107
  ) -> None: ...
108
108
 
109
109
  def cancel(self) -> None: ...
@@ -422,6 +422,7 @@ def TaskGroup() -> _TaskGroupProto: # Returns augmented TaskGroup instance
422
422
  self.cancel_scope.cancel()
423
423
 
424
424
  _tg = TaskGroup_
425
+ assert _tg is not None
425
426
  return _tg()
426
427
 
427
428
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moat-lib-micro
3
- Version: 0.3.2
3
+ Version: 0.3.3
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