fastapi-error-map 0.9.7__tar.gz → 0.9.8__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.
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/PKG-INFO +5 -5
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/README.md +2 -2
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/pyproject.toml +3 -3
- fastapi_error_map-0.9.8/uv.lock +1705 -0
- fastapi_error_map-0.9.7/uv.lock +0 -1535
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/.github/workflows/ci.yaml +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/.github/workflows/test-compatibility.yaml +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/.gitignore +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/.pre-commit-config.yaml +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/LICENSE +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/Makefile +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/docs/example-openapi.png +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/examples/__init__.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/examples/errors.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/examples/main.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/fastapi_error_map/__init__.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/fastapi_error_map/error_handling.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/fastapi_error_map/openapi.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/fastapi_error_map/py.typed +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/fastapi_error_map/routing.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/fastapi_error_map/rules.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/fastapi_error_map/translator_policy.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/fastapi_error_map/translators.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/noxfile.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/__init__.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/integration/__init__.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/integration/conftest.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/integration/test_example.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/integration/test_routing.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/integration/test_threadpool.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/unit/__init__.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/unit/error_stubs.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/unit/test_error_handling.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/unit/test_openapi.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/unit/test_rules.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/unit/test_translators.py +0 -0
- {fastapi_error_map-0.9.7 → fastapi_error_map-0.9.8}/tests/unit/translator_stubs.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-error-map
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.8
|
|
4
4
|
Summary: Elegant per-endpoint error handling for FastAPI that keeps OpenAPI in sync
|
|
5
5
|
Project-URL: Homepage, https://github.com/ivan-borovets/fastapi-error-map
|
|
6
6
|
Project-URL: Repository, https://github.com/ivan-borovets/fastapi-error-map
|
|
@@ -21,14 +21,14 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries
|
|
22
22
|
Classifier: Typing :: Typed
|
|
23
23
|
Requires-Python: >=3.9
|
|
24
|
-
Requires-Dist: fastapi
|
|
25
|
-
Requires-Dist: orjson
|
|
24
|
+
Requires-Dist: fastapi<1.0,>=0.100
|
|
25
|
+
Requires-Dist: orjson>=3.11.4
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
27
27
|
|
|
28
28
|
## FastAPI Error Map
|
|
29
29
|
|
|
30
|
-
[](https://badge.fury.io/py/fastapi-error-map)
|
|
31
|
+

|
|
32
32
|
[](https://codecov.io/gh/ivan-borovets/fastapi-error-map)
|
|
33
33
|

|
|
34
34
|

|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
## FastAPI Error Map
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/py/fastapi-error-map)
|
|
4
|
+

|
|
5
5
|
[](https://codecov.io/gh/ivan-borovets/fastapi-error-map)
|
|
6
6
|

|
|
7
7
|

|
|
@@ -7,7 +7,7 @@ sources = ["src"]
|
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = "fastapi-error-map"
|
|
10
|
-
version = "0.9.
|
|
10
|
+
version = "0.9.8"
|
|
11
11
|
description = "Elegant per-endpoint error handling for FastAPI that keeps OpenAPI in sync"
|
|
12
12
|
readme = "README.md"
|
|
13
13
|
license = { text = "Apache-2.0" }
|
|
@@ -31,8 +31,8 @@ classifiers = [
|
|
|
31
31
|
"Framework :: FastAPI",
|
|
32
32
|
]
|
|
33
33
|
dependencies = [
|
|
34
|
-
"fastapi
|
|
35
|
-
"orjson
|
|
34
|
+
"fastapi>=0.100,<1.0",
|
|
35
|
+
"orjson>=3.11.4",
|
|
36
36
|
]
|
|
37
37
|
[dependency-groups]
|
|
38
38
|
dev = [
|