engin 0.0.16__tar.gz → 0.0.17__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.
- {engin-0.0.16 → engin-0.0.17}/CHANGELOG.md +12 -0
- {engin-0.0.16 → engin-0.0.17}/PKG-INFO +1 -1
- {engin-0.0.16 → engin-0.0.17}/pyproject.toml +1 -1
- {engin-0.0.16 → engin-0.0.17}/src/engin/_assembler.py +1 -1
- {engin-0.0.16 → engin-0.0.17}/src/engin/_cli/_graph.py +1 -1
- {engin-0.0.16 → engin-0.0.17}/src/engin/_dependency.py +28 -18
- {engin-0.0.16 → engin-0.0.17}/src/engin/_graph.py +1 -1
- {engin-0.0.16 → engin-0.0.17}/src/engin/ext/fastapi.py +2 -2
- {engin-0.0.16 → engin-0.0.17}/tests/test_dependencies.py +12 -0
- {engin-0.0.16 → engin-0.0.17}/uv.lock +35 -34
- {engin-0.0.16 → engin-0.0.17}/.github/workflows/check.yaml +0 -0
- {engin-0.0.16 → engin-0.0.17}/.github/workflows/publish.yaml +0 -0
- {engin-0.0.16 → engin-0.0.17}/.gitignore +0 -0
- {engin-0.0.16 → engin-0.0.17}/.readthedocs.yaml +0 -0
- {engin-0.0.16 → engin-0.0.17}/LICENSE +0 -0
- {engin-0.0.16 → engin-0.0.17}/README.md +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/concepts/engin.md +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/concepts/invocations.md +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/concepts/lifecycle.md +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/concepts/providers.md +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/getting-started.md +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/guides/fastapi-graph.png +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/guides/fastapi.md +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/index.md +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/js/readthedocs.js +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/overrides/main.html +0 -0
- {engin-0.0.16 → engin-0.0.17}/docs/reference.md +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/app.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/common/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/common/db/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/common/db/adapaters/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/common/db/adapaters/memory.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/common/db/block.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/common/db/ports.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/common/starlette/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/common/starlette/endpoint.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/features/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/features/cats/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/features/cats/api/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/features/cats/api/get.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/features/cats/api/post.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/features/cats/block.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/features/cats/domain.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/asgi/main.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/app.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/main.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/routes/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/routes/cats/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/routes/cats/adapters/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/routes/cats/adapters/repository.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/routes/cats/api.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/routes/cats/block.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/routes/cats/domain.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/fastapi/routes/cats/ports.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/simple/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/examples/simple/main.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/mkdocs.yaml +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_block.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_cli/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_cli/_graph.html +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_cli/_utils.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_engin.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_exceptions.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_introspect.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_lifecycle.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_option.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/_type_utils.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/ext/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/ext/asgi.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/src/engin/py.typed +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/acceptance/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/acceptance/test_error_in_shutdown.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/acceptance/test_error_in_start_up.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/acceptance/test_fastapi.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/cli/__init__.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/cli/test_graph.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/conftest.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/deps.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/test_assembler.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/test_block.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/test_engin.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/test_graph.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/test_lifecycle.py +0 -0
- {engin-0.0.16 → engin-0.0.17}/tests/test_utils.py +0 -0
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
8
|
|
9
|
+
## [0.0.17] - 2025-04-20
|
10
|
+
|
11
|
+
### Added
|
12
|
+
|
13
|
+
- `Provide` now has the `as_type` parameter that `Supply` had previously.
|
14
|
+
|
15
|
+
### Changed
|
16
|
+
|
17
|
+
- Renamed `parameter_types` property on dependencies to `parameter_type_ids` to be more
|
18
|
+
explicit.
|
19
|
+
|
20
|
+
|
9
21
|
## [0.0.16] - 2025-04-16
|
10
22
|
|
11
23
|
### Added
|
@@ -228,7 +228,7 @@ class Assembler:
|
|
228
228
|
yield from (
|
229
229
|
child_provider
|
230
230
|
for root_provider in root_providers
|
231
|
-
for root_provider_param in root_provider.
|
231
|
+
for root_provider_param in root_provider.parameter_type_ids
|
232
232
|
for child_provider in self._resolve_providers(root_provider_param)
|
233
233
|
)
|
234
234
|
yield from root_providers
|
@@ -165,7 +165,7 @@ def _render_node(node: Dependency, render_block: bool = True) -> str:
|
|
165
165
|
md += f"{_short_name(node.return_type_id)}"
|
166
166
|
return f'{node_id}["`{md}`"]{style}'
|
167
167
|
if isinstance(node, Entrypoint):
|
168
|
-
entrypoint_type = node.
|
168
|
+
entrypoint_type = node.parameter_type_ids[0]
|
169
169
|
md += f"{entrypoint_type}"
|
170
170
|
return f'{node_id}[/"`{md}`"\\]{style}'
|
171
171
|
if isinstance(node, Invoke):
|
@@ -76,7 +76,7 @@ class Dependency(ABC, Option, Generic[P, T]):
|
|
76
76
|
return f"{self._func.__module__}.{self._func.__name__}"
|
77
77
|
|
78
78
|
@property
|
79
|
-
def
|
79
|
+
def parameter_type_ids(self) -> list[TypeId]:
|
80
80
|
parameters = list(self._signature.parameters.values())
|
81
81
|
if not parameters:
|
82
82
|
return []
|
@@ -136,7 +136,7 @@ class Entrypoint(Invoke):
|
|
136
136
|
super().__init__(invocation=_noop)
|
137
137
|
|
138
138
|
@property
|
139
|
-
def
|
139
|
+
def parameter_type_ids(self) -> list[TypeId]:
|
140
140
|
return [TypeId.from_type(self._type)]
|
141
141
|
|
142
142
|
@property
|
@@ -153,7 +153,12 @@ class Entrypoint(Invoke):
|
|
153
153
|
|
154
154
|
class Provide(Dependency[Any, T]):
|
155
155
|
def __init__(
|
156
|
-
self,
|
156
|
+
self,
|
157
|
+
builder: Func[P, T],
|
158
|
+
*,
|
159
|
+
scope: str | None = None,
|
160
|
+
as_type: type | None = None,
|
161
|
+
override: bool = False,
|
157
162
|
) -> None:
|
158
163
|
"""
|
159
164
|
Provide a type via a builder or factory function.
|
@@ -161,19 +166,26 @@ class Provide(Dependency[Any, T]):
|
|
161
166
|
Args:
|
162
167
|
builder: the builder function that returns the type.
|
163
168
|
scope: (optional) associate this provider with a specific scope.
|
164
|
-
|
165
|
-
|
169
|
+
as_type: (optional) allows you to explicitly specify the provided type, e.g.
|
170
|
+
to type erase a concrete type, or to provide a mock implementation.
|
171
|
+
override: (optional) allow this provider to override other providers for the
|
172
|
+
same type from the same package.
|
166
173
|
"""
|
167
174
|
super().__init__(func=builder)
|
168
175
|
self._scope = scope
|
169
176
|
self._override = override
|
177
|
+
self._explicit_type = as_type
|
178
|
+
|
179
|
+
if self._explicit_type is not None:
|
180
|
+
self._signature = self._signature.replace(return_annotation=self._explicit_type)
|
181
|
+
|
170
182
|
self._is_multi = typing.get_origin(self.return_type) is list
|
171
183
|
|
172
184
|
# Validate that the provider does to depend on its own output value, as this will
|
173
185
|
# cause a recursion error and is undefined behaviour wise.
|
174
186
|
if any(
|
175
187
|
self.return_type == param.annotation
|
176
|
-
for param in self.
|
188
|
+
for param in self._signature.parameters.values()
|
177
189
|
):
|
178
190
|
raise ValueError("A provider cannot depend on its own return type")
|
179
191
|
|
@@ -187,6 +199,8 @@ class Provide(Dependency[Any, T]):
|
|
187
199
|
|
188
200
|
@property
|
189
201
|
def return_type(self) -> type[T]:
|
202
|
+
if self._explicit_type is not None:
|
203
|
+
return self._explicit_type
|
190
204
|
if isclass(self._func):
|
191
205
|
return_type = self._func # __init__ returns self
|
192
206
|
else:
|
@@ -253,23 +267,19 @@ class Supply(Provide, Generic[T]):
|
|
253
267
|
function.
|
254
268
|
|
255
269
|
Args:
|
256
|
-
value: the value to Supply
|
257
|
-
as_type: allows you to specify the provided type,
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
package.
|
270
|
+
value: the value to Supply.
|
271
|
+
as_type: (optional) allows you to explicitly specify the provided type, e.g.
|
272
|
+
to type erase a concrete type, or to provide a mock implementation.
|
273
|
+
override: (optional) allow this provider to override other providers for the
|
274
|
+
same type from the same package.
|
262
275
|
"""
|
263
276
|
self._value = value
|
264
|
-
self.
|
265
|
-
if self._type_hint is not None:
|
266
|
-
self._get_val.__annotations__["return"] = as_type
|
267
|
-
super().__init__(builder=self._get_val, override=override)
|
277
|
+
super().__init__(builder=self._get_val, as_type=as_type, override=override)
|
268
278
|
|
269
279
|
@property
|
270
280
|
def return_type(self) -> type[T]:
|
271
|
-
if self.
|
272
|
-
return self.
|
281
|
+
if self._explicit_type is not None:
|
282
|
+
return self._explicit_type
|
273
283
|
if isinstance(self._value, list):
|
274
284
|
return list[type(self._value[0])] # type: ignore[misc,return-value]
|
275
285
|
return type(self._value)
|
@@ -75,7 +75,7 @@ class _FastAPIDependencyGrapher(DependencyGrapher):
|
|
75
75
|
) -> list[Node]:
|
76
76
|
nodes: list[Node] = []
|
77
77
|
for root in roots:
|
78
|
-
for parameter in root.
|
78
|
+
for parameter in root.parameter_type_ids:
|
79
79
|
provider = self._providers[parameter]
|
80
80
|
|
81
81
|
# multiprovider
|
@@ -162,7 +162,7 @@ class APIRouteDependency(Dependency):
|
|
162
162
|
return self._route
|
163
163
|
|
164
164
|
@property
|
165
|
-
def
|
165
|
+
def parameter_type_ids(self) -> list[TypeId]:
|
166
166
|
parameters = list(self._signature.parameters.values())
|
167
167
|
if not parameters:
|
168
168
|
return []
|
@@ -129,3 +129,15 @@ def test_provides_implicit_overrides_allowed_when_3rd_party():
|
|
129
129
|
|
130
130
|
provide_a.apply(engin)
|
131
131
|
provide_b.apply(engin)
|
132
|
+
|
133
|
+
|
134
|
+
def test_provide_as_type():
|
135
|
+
provide = Provide(make_int, as_type=float)
|
136
|
+
assert provide.return_type is float
|
137
|
+
assert provide.signature.return_annotation is float
|
138
|
+
|
139
|
+
|
140
|
+
def test_supply_as_type():
|
141
|
+
supply = Supply(3, as_type=float)
|
142
|
+
assert supply.return_type is float
|
143
|
+
assert supply.signature.return_annotation is float
|
@@ -206,7 +206,7 @@ toml = [
|
|
206
206
|
|
207
207
|
[[package]]
|
208
208
|
name = "engin"
|
209
|
-
version = "0.0.
|
209
|
+
version = "0.0.17"
|
210
210
|
source = { editable = "." }
|
211
211
|
|
212
212
|
[package.optional-dependencies]
|
@@ -527,7 +527,7 @@ wheels = [
|
|
527
527
|
|
528
528
|
[[package]]
|
529
529
|
name = "mkdocs-material"
|
530
|
-
version = "9.6.
|
530
|
+
version = "9.6.12"
|
531
531
|
source = { registry = "https://pypi.org/simple" }
|
532
532
|
dependencies = [
|
533
533
|
{ name = "babel" },
|
@@ -542,9 +542,9 @@ dependencies = [
|
|
542
542
|
{ name = "pymdown-extensions" },
|
543
543
|
{ name = "requests" },
|
544
544
|
]
|
545
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
545
|
+
sdist = { url = "https://files.pythonhosted.org/packages/2d/ef/25fc10dbbb8faeeeb10ed7734d84a347cd2ec5d7200733f11c5553c02608/mkdocs_material-9.6.12.tar.gz", hash = "sha256:add6a6337b29f9ea7912cb1efc661de2c369060b040eb5119855d794ea85b473", size = 3951532 }
|
546
546
|
wheels = [
|
547
|
-
{ url = "https://files.pythonhosted.org/packages/
|
547
|
+
{ url = "https://files.pythonhosted.org/packages/09/00/592940f4d150327a4f455171b2c9d4c3be7779a88e18b0a086183fcd8f06/mkdocs_material-9.6.12-py3-none-any.whl", hash = "sha256:92b4fbdc329e4febc267ca6e2c51e8501fa97b2225c5f4deb4d4e43550f8e61e", size = 8703654 },
|
548
548
|
]
|
549
549
|
|
550
550
|
[[package]]
|
@@ -642,11 +642,11 @@ wheels = [
|
|
642
642
|
|
643
643
|
[[package]]
|
644
644
|
name = "packaging"
|
645
|
-
version = "
|
645
|
+
version = "25.0"
|
646
646
|
source = { registry = "https://pypi.org/simple" }
|
647
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
647
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727 }
|
648
648
|
wheels = [
|
649
|
-
{ url = "https://files.pythonhosted.org/packages/
|
649
|
+
{ url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469 },
|
650
650
|
]
|
651
651
|
|
652
652
|
[[package]]
|
@@ -812,15 +812,16 @@ wheels = [
|
|
812
812
|
|
813
813
|
[[package]]
|
814
814
|
name = "pydantic-settings"
|
815
|
-
version = "2.
|
815
|
+
version = "2.9.1"
|
816
816
|
source = { registry = "https://pypi.org/simple" }
|
817
817
|
dependencies = [
|
818
818
|
{ name = "pydantic" },
|
819
819
|
{ name = "python-dotenv" },
|
820
|
+
{ name = "typing-inspection" },
|
820
821
|
]
|
821
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
822
|
+
sdist = { url = "https://files.pythonhosted.org/packages/67/1d/42628a2c33e93f8e9acbde0d5d735fa0850f3e6a2f8cb1eb6c40b9a732ac/pydantic_settings-2.9.1.tar.gz", hash = "sha256:c509bf79d27563add44e8446233359004ed85066cd096d8b510f715e6ef5d268", size = 163234 }
|
822
823
|
wheels = [
|
823
|
-
{ url = "https://files.pythonhosted.org/packages/
|
824
|
+
{ url = "https://files.pythonhosted.org/packages/b6/5f/d6d641b490fd3ec2c4c13b4244d68deea3a1b970a97be64f34fb5504ff72/pydantic_settings-2.9.1-py3-none-any.whl", hash = "sha256:59b4f431b1defb26fe620c71a7d3968a710d719f5f4cdbbdb7926edeb770f6ef", size = 44356 },
|
824
825
|
]
|
825
826
|
|
826
827
|
[[package]]
|
@@ -1007,27 +1008,27 @@ wheels = [
|
|
1007
1008
|
|
1008
1009
|
[[package]]
|
1009
1010
|
name = "ruff"
|
1010
|
-
version = "0.11.
|
1011
|
-
source = { registry = "https://pypi.org/simple" }
|
1012
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1013
|
-
wheels = [
|
1014
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1015
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1016
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1017
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1018
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1019
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1020
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1021
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1022
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1023
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1024
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1025
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1026
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1027
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1028
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1029
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1030
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1011
|
+
version = "0.11.6"
|
1012
|
+
source = { registry = "https://pypi.org/simple" }
|
1013
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d9/11/bcef6784c7e5d200b8a1f5c2ddf53e5da0efec37e6e5a44d163fb97e04ba/ruff-0.11.6.tar.gz", hash = "sha256:bec8bcc3ac228a45ccc811e45f7eb61b950dbf4cf31a67fa89352574b01c7d79", size = 4010053 }
|
1014
|
+
wheels = [
|
1015
|
+
{ url = "https://files.pythonhosted.org/packages/6e/1f/8848b625100ebcc8740c8bac5b5dd8ba97dd4ee210970e98832092c1635b/ruff-0.11.6-py3-none-linux_armv6l.whl", hash = "sha256:d84dcbe74cf9356d1bdb4a78cf74fd47c740bf7bdeb7529068f69b08272239a1", size = 10248105 },
|
1016
|
+
{ url = "https://files.pythonhosted.org/packages/e0/47/c44036e70c6cc11e6ee24399c2a1e1f1e99be5152bd7dff0190e4b325b76/ruff-0.11.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:9bc583628e1096148011a5d51ff3c836f51899e61112e03e5f2b1573a9b726de", size = 11001494 },
|
1017
|
+
{ url = "https://files.pythonhosted.org/packages/ed/5b/170444061650202d84d316e8f112de02d092bff71fafe060d3542f5bc5df/ruff-0.11.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f2959049faeb5ba5e3b378709e9d1bf0cab06528b306b9dd6ebd2a312127964a", size = 10352151 },
|
1018
|
+
{ url = "https://files.pythonhosted.org/packages/ff/91/f02839fb3787c678e112c8865f2c3e87cfe1744dcc96ff9fc56cfb97dda2/ruff-0.11.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63c5d4e30d9d0de7fedbfb3e9e20d134b73a30c1e74b596f40f0629d5c28a193", size = 10541951 },
|
1019
|
+
{ url = "https://files.pythonhosted.org/packages/9e/f3/c09933306096ff7a08abede3cc2534d6fcf5529ccd26504c16bf363989b5/ruff-0.11.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:26a4b9a4e1439f7d0a091c6763a100cef8fbdc10d68593df6f3cfa5abdd9246e", size = 10079195 },
|
1020
|
+
{ url = "https://files.pythonhosted.org/packages/e0/0d/a87f8933fccbc0d8c653cfbf44bedda69c9582ba09210a309c066794e2ee/ruff-0.11.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b5edf270223dd622218256569636dc3e708c2cb989242262fe378609eccf1308", size = 11698918 },
|
1021
|
+
{ url = "https://files.pythonhosted.org/packages/52/7d/8eac0bd083ea8a0b55b7e4628428203441ca68cd55e0b67c135a4bc6e309/ruff-0.11.6-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f55844e818206a9dd31ff27f91385afb538067e2dc0beb05f82c293ab84f7d55", size = 12319426 },
|
1022
|
+
{ url = "https://files.pythonhosted.org/packages/c2/dc/d0c17d875662d0c86fadcf4ca014ab2001f867621b793d5d7eef01b9dcce/ruff-0.11.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d8f782286c5ff562e4e00344f954b9320026d8e3fae2ba9e6948443fafd9ffc", size = 11791012 },
|
1023
|
+
{ url = "https://files.pythonhosted.org/packages/f9/f3/81a1aea17f1065449a72509fc7ccc3659cf93148b136ff2a8291c4bc3ef1/ruff-0.11.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:01c63ba219514271cee955cd0adc26a4083df1956d57847978383b0e50ffd7d2", size = 13949947 },
|
1024
|
+
{ url = "https://files.pythonhosted.org/packages/61/9f/a3e34de425a668284e7024ee6fd41f452f6fa9d817f1f3495b46e5e3a407/ruff-0.11.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15adac20ef2ca296dd3d8e2bedc6202ea6de81c091a74661c3666e5c4c223ff6", size = 11471753 },
|
1025
|
+
{ url = "https://files.pythonhosted.org/packages/df/c5/4a57a86d12542c0f6e2744f262257b2aa5a3783098ec14e40f3e4b3a354a/ruff-0.11.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4dd6b09e98144ad7aec026f5588e493c65057d1b387dd937d7787baa531d9bc2", size = 10417121 },
|
1026
|
+
{ url = "https://files.pythonhosted.org/packages/58/3f/a3b4346dff07ef5b862e2ba06d98fcbf71f66f04cf01d375e871382b5e4b/ruff-0.11.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:45b2e1d6c0eed89c248d024ea95074d0e09988d8e7b1dad8d3ab9a67017a5b03", size = 10073829 },
|
1027
|
+
{ url = "https://files.pythonhosted.org/packages/93/cc/7ed02e0b86a649216b845b3ac66ed55d8aa86f5898c5f1691797f408fcb9/ruff-0.11.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:bd40de4115b2ec4850302f1a1d8067f42e70b4990b68838ccb9ccd9f110c5e8b", size = 11076108 },
|
1028
|
+
{ url = "https://files.pythonhosted.org/packages/39/5e/5b09840fef0eff1a6fa1dea6296c07d09c17cb6fb94ed5593aa591b50460/ruff-0.11.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:77cda2dfbac1ab73aef5e514c4cbfc4ec1fbef4b84a44c736cc26f61b3814cd9", size = 11512366 },
|
1029
|
+
{ url = "https://files.pythonhosted.org/packages/6f/4c/1cd5a84a412d3626335ae69f5f9de2bb554eea0faf46deb1f0cb48534042/ruff-0.11.6-py3-none-win32.whl", hash = "sha256:5151a871554be3036cd6e51d0ec6eef56334d74dfe1702de717a995ee3d5b287", size = 10485900 },
|
1030
|
+
{ url = "https://files.pythonhosted.org/packages/42/46/8997872bc44d43df986491c18d4418f1caff03bc47b7f381261d62c23442/ruff-0.11.6-py3-none-win_amd64.whl", hash = "sha256:cce85721d09c51f3b782c331b0abd07e9d7d5f775840379c640606d3159cae0e", size = 11558592 },
|
1031
|
+
{ url = "https://files.pythonhosted.org/packages/d7/6a/65fecd51a9ca19e1477c3879a7fda24f8904174d1275b419422ac00f6eee/ruff-0.11.6-py3-none-win_arm64.whl", hash = "sha256:3567ba0d07fb170b1b48d944715e3294b77f5b7679e8ba258199a250383ccb79", size = 10682766 },
|
1031
1032
|
]
|
1032
1033
|
|
1033
1034
|
[[package]]
|
@@ -1155,16 +1156,16 @@ wheels = [
|
|
1155
1156
|
|
1156
1157
|
[[package]]
|
1157
1158
|
name = "uvicorn"
|
1158
|
-
version = "0.34.
|
1159
|
+
version = "0.34.2"
|
1159
1160
|
source = { registry = "https://pypi.org/simple" }
|
1160
1161
|
dependencies = [
|
1161
1162
|
{ name = "click" },
|
1162
1163
|
{ name = "h11" },
|
1163
1164
|
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
1164
1165
|
]
|
1165
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1166
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a6/ae/9bbb19b9e1c450cf9ecaef06463e40234d98d95bf572fab11b4f19ae5ded/uvicorn-0.34.2.tar.gz", hash = "sha256:0e929828f6186353a80b58ea719861d2629d766293b6d19baf086ba31d4f3328", size = 76815 }
|
1166
1167
|
wheels = [
|
1167
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1168
|
+
{ url = "https://files.pythonhosted.org/packages/b1/4b/4cef6ce21a2aaca9d852a6e84ef4f135d99fcd74fa75105e2fc0c8308acd/uvicorn-0.34.2-py3-none-any.whl", hash = "sha256:deb49af569084536d269fe0a6d67e3754f104cf03aba7c11c40f01aadf33c403", size = 62483 },
|
1168
1169
|
]
|
1169
1170
|
|
1170
1171
|
[[package]]
|
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
|
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
|
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
|
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
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|