muffin 1.1.2__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.2 → muffin-1.1.4}/PKG-INFO +2 -2
- {muffin-1.1.2 → muffin-1.1.4}/muffin/manage.py +3 -3
- {muffin-1.1.2 → muffin-1.1.4}/pyproject.toml +2 -2
- {muffin-1.1.2 → muffin-1.1.4}/README.rst +0 -0
- {muffin-1.1.2 → muffin-1.1.4}/muffin/__init__.py +0 -0
- {muffin-1.1.2 → muffin-1.1.4}/muffin/app.py +0 -0
- {muffin-1.1.2 → muffin-1.1.4}/muffin/constants.py +0 -0
- {muffin-1.1.2 → muffin-1.1.4}/muffin/errors.py +0 -0
- {muffin-1.1.2 → muffin-1.1.4}/muffin/handler.py +0 -0
- {muffin-1.1.2 → muffin-1.1.4}/muffin/plugins.py +0 -0
- {muffin-1.1.2 → muffin-1.1.4}/muffin/py.typed +0 -0
- {muffin-1.1.2 → muffin-1.1.4}/muffin/pytest.py +0 -0
- {muffin-1.1.2 → muffin-1.1.4}/muffin/types.py +0 -0
- {muffin-1.1.2 → 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
|
@@ -294,8 +294,8 @@ def cli():
|
|
294
294
|
app = import_app(args_.app)
|
295
295
|
app.logger.info("Application is loaded: %s", app.cfg.name)
|
296
296
|
|
297
|
-
except
|
298
|
-
logging.
|
297
|
+
except ImportError as exc:
|
298
|
+
logging.error("Failed to import application: %s", exc)
|
299
299
|
return sys.exit(1)
|
300
300
|
|
301
301
|
try:
|
@@ -307,4 +307,4 @@ def cli():
|
|
307
307
|
sys.exit(0)
|
308
308
|
|
309
309
|
|
310
|
-
# ruff: noqa: T100, LOG015
|
310
|
+
# ruff: noqa: T100, LOG015, TRY400
|
@@ -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
|