fastapi-extra 0.3.4__tar.gz → 0.3.5__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.
Files changed (31) hide show
  1. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/PKG-INFO +2 -2
  2. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/__init__.py +1 -1
  3. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/_patch.py +1 -1
  4. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/PKG-INFO +2 -2
  5. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/requires.txt +1 -1
  6. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/pyproject.toml +1 -1
  7. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/LICENSE +0 -0
  8. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/README.rst +0 -0
  9. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/cache/__init__.py +0 -0
  10. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/cache/redis.py +0 -0
  11. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/cursor.pyi +0 -0
  12. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/database/__init__.py +0 -0
  13. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/database/model.py +0 -0
  14. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/database/service.py +0 -0
  15. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/database/session.py +0 -0
  16. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/dependency.py +0 -0
  17. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/form.py +0 -0
  18. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/native/cursor.pyx +0 -0
  19. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/native/routing.pyx +0 -0
  20. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/native/urlparse.pyx +0 -0
  21. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/py.typed +0 -0
  22. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/response.py +0 -0
  23. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/routing.pyi +0 -0
  24. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/settings.py +0 -0
  25. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/types.py +0 -0
  26. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/urlparse.pyi +0 -0
  27. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/utils.py +0 -0
  28. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/SOURCES.txt +0 -0
  29. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/dependency_links.txt +0 -0
  30. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/top_level.txt +0 -0
  31. {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastapi-extra
3
- Version: 0.3.4
3
+ Version: 0.3.5
4
4
  Summary: extra package for fastapi.
5
5
  Author-email: Ziyan Yin <408856732@qq.com>
6
6
  License: BSD-3-Clause
@@ -18,7 +18,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
18
  Requires-Python: >=3.12
19
19
  Description-Content-Type: text/x-rst
20
20
  License-File: LICENSE
21
- Requires-Dist: fastapi<0.129.0,>=0.128.6
21
+ Requires-Dist: fastapi<0.137.0,>=0.136.0
22
22
  Requires-Dist: httpx<0.29.0,>=0.28.0
23
23
  Requires-Dist: pydantic-settings>=2.12.0
24
24
  Requires-Dist: sqlmodel>=0.0.22
@@ -1,4 +1,4 @@
1
- __version__ = "0.3.4"
1
+ __version__ = "0.3.5"
2
2
 
3
3
 
4
4
  from fastapi import FastAPI
@@ -71,7 +71,7 @@ def request_params_to_args(
71
71
  for key in received_params.keys():
72
72
  if key not in processed_keys:
73
73
  if hasattr(received_params, "getlist"):
74
- value = received_params.getlist(key)
74
+ value = received_params.getlist(key) # type: ignore
75
75
  if isinstance(value, list) and (len(value) == 1):
76
76
  params_to_process[key] = value[0]
77
77
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastapi-extra
3
- Version: 0.3.4
3
+ Version: 0.3.5
4
4
  Summary: extra package for fastapi.
5
5
  Author-email: Ziyan Yin <408856732@qq.com>
6
6
  License: BSD-3-Clause
@@ -18,7 +18,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
18
  Requires-Python: >=3.12
19
19
  Description-Content-Type: text/x-rst
20
20
  License-File: LICENSE
21
- Requires-Dist: fastapi<0.129.0,>=0.128.6
21
+ Requires-Dist: fastapi<0.137.0,>=0.136.0
22
22
  Requires-Dist: httpx<0.29.0,>=0.28.0
23
23
  Requires-Dist: pydantic-settings>=2.12.0
24
24
  Requires-Dist: sqlmodel>=0.0.22
@@ -1,4 +1,4 @@
1
- fastapi<0.129.0,>=0.128.6
1
+ fastapi<0.137.0,>=0.136.0
2
2
  httpx<0.29.0,>=0.28.0
3
3
  pydantic-settings>=2.12.0
4
4
  sqlmodel>=0.0.22
@@ -30,7 +30,7 @@ classifiers = [
30
30
  "Topic :: Software Development :: Libraries :: Python Modules"
31
31
  ]
32
32
  dependencies = [
33
- "fastapi>=0.128.6,<0.129.0",
33
+ "fastapi>=0.136.0,<0.137.0",
34
34
  "httpx>=0.28.0,<0.29.0",
35
35
  "pydantic-settings>=2.12.0",
36
36
  "sqlmodel>=0.0.22",
File without changes
File without changes
File without changes