muffin 1.1.2__py3-none-any.whl → 1.1.4__py3-none-any.whl

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/manage.py CHANGED
@@ -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 (ImportError, ModuleNotFoundError):
298
- logging.exception("Failed to import application")
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
  Metadata-Version: 2.3
2
2
  Name: muffin
3
- Version: 1.1.2
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.2,<2.0.0)
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
@@ -3,13 +3,13 @@ muffin/app.py,sha256=6gPJUhWn9QSdzSwIl_8eP1uwOGaFIkHI-aXQrYwU1gY,5318
3
3
  muffin/constants.py,sha256=Ga1UJiEdXUk6dIEH_IEVYkFSZxQFPhxie7fCJwQY8V0,71
4
4
  muffin/errors.py,sha256=I-vKbMMBiMU07zPdKvoJKqA7s4xYAUA-4oZXrRMRzcM,701
5
5
  muffin/handler.py,sha256=_cvF0TV87YH5_ZDnwgsks-h_e0yI14P27j4HG5tWanc,3673
6
- muffin/manage.py,sha256=NWtjR8NfJ6O7-K3xZe2yWOmFO_ZUIyYO4VTGq20KWso,10295
6
+ muffin/manage.py,sha256=rZYiHVgeIVlnOZPULQ_ngKNv14ahqM2li189NcFAQ6w,10292
7
7
  muffin/plugins.py,sha256=fGIocty5hHGTTY3zQrYBvkXjETlLndqRwAe5jmpyi3I,3417
8
8
  muffin/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  muffin/pytest.py,sha256=51pJ-JJ2vwqiPhR9TPqXvT78X35l3v3oEkN5LBnfY8E,2679
10
10
  muffin/types.py,sha256=wsUj5oAfqSZMoEf-wyFJLBlWa8Mc-eJGqKLr02HxuXE,153
11
11
  muffin/utils.py,sha256=O3JXRkFyDlZ3kJZeaHz2WHMTY6-lvHGDu7qFy0x8Zls,2896
12
- muffin-1.1.2.dist-info/METADATA,sha256=Ot4Jz08JJA-E7osf0u8d3qkI4lVCOcxCLE52pEoUDyk,6243
13
- muffin-1.1.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
14
- muffin-1.1.2.dist-info/entry_points.txt,sha256=GvPS3M-tNVPzhUS5jnUpOmWw2NAqedY34VRCYgPYzlM,84
15
- muffin-1.1.2.dist-info/RECORD,,
12
+ muffin-1.1.4.dist-info/METADATA,sha256=pue77FpwKmrhaAqAMSGPP_vpR00PLq7XkNG2CP0Cmq4,6243
13
+ muffin-1.1.4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
14
+ muffin-1.1.4.dist-info/entry_points.txt,sha256=GvPS3M-tNVPzhUS5jnUpOmWw2NAqedY34VRCYgPYzlM,84
15
+ muffin-1.1.4.dist-info/RECORD,,
File without changes