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.
- {moat_lib_micro-0.3.2/src/moat_lib_micro.egg-info → moat_lib_micro-0.3.3}/PKG-INFO +1 -1
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/debian/changelog +18 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/debian/control +1 -2
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/pyproject.toml +1 -1
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/src/moat/lib/micro/__init__.py +9 -8
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3/src/moat_lib_micro.egg-info}/PKG-INFO +1 -1
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/LICENSE.txt +0 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/Makefile +0 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/README.md +0 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/debian/.gitignore +0 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/debian/rules +0 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/setup.cfg +0 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/src/moat_lib_micro.egg-info/SOURCES.txt +0 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/src/moat_lib_micro.egg-info/dependency_links.txt +0 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/src/moat_lib_micro.egg-info/requires.txt +0 -0
- {moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/src/moat_lib_micro.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
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[
|
|
96
|
-
*a:
|
|
97
|
-
_name: str | None = None,
|
|
98
|
-
**k:
|
|
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[
|
|
104
|
-
*a:
|
|
105
|
-
_name: str | None = None,
|
|
106
|
-
**k:
|
|
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
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{moat_lib_micro-0.3.2 → moat_lib_micro-0.3.3}/src/moat_lib_micro.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|