muffin 1.1.3__tar.gz → 1.1.4__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.
- {muffin-1.1.3 → muffin-1.1.4}/PKG-INFO +2 -2
- {muffin-1.1.3 → muffin-1.1.4}/pyproject.toml +2 -2
- {muffin-1.1.3 → muffin-1.1.4}/README.rst +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/__init__.py +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/app.py +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/constants.py +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/errors.py +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/handler.py +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/manage.py +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/plugins.py +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/py.typed +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/pytest.py +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/types.py +0 -0
- {muffin-1.1.3 → muffin-1.1.4}/muffin/utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: muffin
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.4
|
4
4
|
Summary: Muffin is a fast, simple and asyncronous web-framework for Python 3 (asyncio, trio, curio)
|
5
5
|
License: MIT
|
6
6
|
Keywords: asgi,web,web framework,asyncio,trio,curio
|
@@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
21
21
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
22
22
|
Classifier: Topic :: Internet :: WWW/HTTP
|
23
23
|
Provides-Extra: standard
|
24
|
-
Requires-Dist: asgi-tools (>=1.3.
|
24
|
+
Requires-Dist: asgi-tools (>=1.3.3,<2.0.0)
|
25
25
|
Requires-Dist: gunicorn (>=20.1.0,<21.0.0) ; extra == "standard"
|
26
26
|
Requires-Dist: modconfig (>=1,<2)
|
27
27
|
Requires-Dist: ujson
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "muffin"
|
3
|
-
version = "1.1.
|
3
|
+
version = "1.1.4"
|
4
4
|
description = "Muffin is a fast, simple and asyncronous web-framework for Python 3 (asyncio, trio, curio)"
|
5
5
|
readme = "README.rst"
|
6
6
|
license = "MIT"
|
@@ -31,7 +31,7 @@ changelog = "https://raw.githubusercontent.com/klen/muffin/master/CHANGELOG.md"
|
|
31
31
|
|
32
32
|
[tool.poetry.dependencies]
|
33
33
|
python = "^3.10"
|
34
|
-
asgi-tools = "^1.3.
|
34
|
+
asgi-tools = "^1.3.3"
|
35
35
|
modconfig = "^1"
|
36
36
|
ujson = "*"
|
37
37
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|