arkitekt-next 0.7.19__py3-none-any.whl → 0.7.21__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.
Potentially problematic release.
This version of arkitekt-next might be problematic. Click here for more details.
- arkitekt_next/builders.py +1 -1
- arkitekt_next/cli/commands/init/main.py +0 -2
- arkitekt_next/constants.py +1 -1
- arkitekt_next/service_registry.py +3 -3
- {arkitekt_next-0.7.19.dist-info → arkitekt_next-0.7.21.dist-info}/METADATA +6 -6
- {arkitekt_next-0.7.19.dist-info → arkitekt_next-0.7.21.dist-info}/RECORD +9 -9
- {arkitekt_next-0.7.19.dist-info → arkitekt_next-0.7.21.dist-info}/LICENSE +0 -0
- {arkitekt_next-0.7.19.dist-info → arkitekt_next-0.7.21.dist-info}/WHEEL +0 -0
- {arkitekt_next-0.7.19.dist-info → arkitekt_next-0.7.21.dist-info}/entry_points.txt +0 -0
arkitekt_next/builders.py
CHANGED
|
@@ -143,7 +143,7 @@ def easy(
|
|
|
143
143
|
fakts=fakts,
|
|
144
144
|
herre=herre,
|
|
145
145
|
manifest=manifest,
|
|
146
|
-
services=registry.build_service_map(fakts=fakts, herre=herre, params=params),
|
|
146
|
+
services=registry.build_service_map(fakts=fakts, herre=herre, params=params, manifest=manifest),
|
|
147
147
|
)
|
|
148
148
|
|
|
149
149
|
print()
|
|
@@ -142,7 +142,6 @@ def init(
|
|
|
142
142
|
logo: Optional[str],
|
|
143
143
|
scopes: List[str],
|
|
144
144
|
template: str,
|
|
145
|
-
requirements: List[Requirement],
|
|
146
145
|
entrypoint: str,
|
|
147
146
|
overwrite_manifest: bool,
|
|
148
147
|
overwrite_app: bool,
|
|
@@ -165,7 +164,6 @@ def init(
|
|
|
165
164
|
identifier=identifier,
|
|
166
165
|
version=version,
|
|
167
166
|
scopes=scopes,
|
|
168
|
-
requirements=requirements,
|
|
169
167
|
entrypoint=entrypoint,
|
|
170
168
|
)
|
|
171
169
|
|
arkitekt_next/constants.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from pydantic import BaseModel, Field
|
|
2
2
|
from herre import Herre
|
|
3
3
|
from fakts import Fakts
|
|
4
|
-
from .model import Requirement
|
|
4
|
+
from .model import Manifest, Requirement
|
|
5
5
|
from typing import Callable, Dict
|
|
6
6
|
import importlib
|
|
7
7
|
import sys
|
|
@@ -40,8 +40,8 @@ class ServiceBuilderRegistry:
|
|
|
40
40
|
return self.services.get(name)
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
def build_service_map(self, fakts: Fakts, herre: Herre, params: Params):
|
|
44
|
-
return {name: builder(fakts, herre, params) for name, builder in self.service_builders.items()}
|
|
43
|
+
def build_service_map(self, fakts: Fakts, herre: Herre, params: Params, manifest: Manifest):
|
|
44
|
+
return {name: builder(fakts, herre, params, manifest) for name, builder in self.service_builders.items()}
|
|
45
45
|
|
|
46
46
|
def get_requirements(self):
|
|
47
47
|
return self.requirements
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: arkitekt-next
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.21
|
|
4
4
|
Summary: client for the arkitekt_next platform
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: jhnnsrs
|
|
@@ -17,17 +17,17 @@ Provides-Extra: all
|
|
|
17
17
|
Provides-Extra: cli
|
|
18
18
|
Requires-Dist: dokker (>=0.1.21)
|
|
19
19
|
Requires-Dist: fakts (>=0.5.0)
|
|
20
|
-
Requires-Dist: fluss-next (>=0.1.
|
|
20
|
+
Requires-Dist: fluss-next (>=0.1.68) ; extra == "all"
|
|
21
21
|
Requires-Dist: herre (>=0.4.3)
|
|
22
|
-
Requires-Dist: kabinet (>=0.1.
|
|
22
|
+
Requires-Dist: kabinet (>=0.1.6) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "all")
|
|
23
23
|
Requires-Dist: koil (>=0.3.6)
|
|
24
24
|
Requires-Dist: mikro-next (>=0.1.13) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "all")
|
|
25
|
-
Requires-Dist: reaktion-next (>=0.1.
|
|
26
|
-
Requires-Dist: rekuest-next (>=0.2.
|
|
25
|
+
Requires-Dist: reaktion-next (>=0.1.58) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "all")
|
|
26
|
+
Requires-Dist: rekuest-next (>=0.2.12) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "cli" or extra == "all")
|
|
27
27
|
Requires-Dist: rich-click (>=1.6.1) ; extra == "cli" or extra == "all"
|
|
28
28
|
Requires-Dist: semver (>=3.0.1) ; extra == "cli" or extra == "all"
|
|
29
29
|
Requires-Dist: turms (>=0.5.0) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "cli" or extra == "all")
|
|
30
|
-
Requires-Dist: unlok-next (>=0.1.
|
|
30
|
+
Requires-Dist: unlok-next (>=0.1.63) ; python_version >= "3.8" and python_version < "4.0"
|
|
31
31
|
Requires-Dist: watchfiles (>=0.18.1) ; extra == "cli" or extra == "all"
|
|
32
32
|
Description-Content-Type: text/markdown
|
|
33
33
|
|
|
@@ -16,7 +16,7 @@ arkitekt_next/apps/service/mikro_next.py,sha256=j612M2wo4EdaKp13qx_8eqQsB6wc5nE_
|
|
|
16
16
|
arkitekt_next/apps/service/rekuest_next.py,sha256=RiNN5rzDbq15AgyVpv-3tjkSO6TeO2xsuEvGTYmB2UQ,1816
|
|
17
17
|
arkitekt_next/apps/service/unlok_next.py,sha256=u3cjFr1i6kHjH881oj_NBmY1CgnM0uqdDbicq-SilPM,1124
|
|
18
18
|
arkitekt_next/apps/types.py,sha256=uozRXDDGJBL9hYCYGZF_XmtZ4ZvoLZeEEfJeL10Ve3U,1136
|
|
19
|
-
arkitekt_next/builders.py,sha256=
|
|
19
|
+
arkitekt_next/builders.py,sha256=BsT-3mzBiWj6uOBEDBSdp-7Rd1FMZ8zoBYDcv8wB19c,5795
|
|
20
20
|
arkitekt_next/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
arkitekt_next/cli/commands/call/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
arkitekt_next/cli/commands/call/local.py,sha256=YDummInGSb6lGKGiTlMSuXbE-Sz6dbfng6CsZaChCew,3338
|
|
@@ -28,7 +28,7 @@ arkitekt_next/cli/commands/gen/init.py,sha256=JV9x27Iy80QlmigXd7TSG2YIBHPGJBdEQ_
|
|
|
28
28
|
arkitekt_next/cli/commands/gen/main.py,sha256=_BdkcsXoWY5_3gmboq2e0pGYM6lAnwqQgBAyxmvdf6U,947
|
|
29
29
|
arkitekt_next/cli/commands/gen/watch.py,sha256=nf4QckdTJOWxvKoeNRwvC4rXQ4xhIx8LCDDJzpPhcY8,1189
|
|
30
30
|
arkitekt_next/cli/commands/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
arkitekt_next/cli/commands/init/main.py,sha256=
|
|
31
|
+
arkitekt_next/cli/commands/init/main.py,sha256=1ZbZDBECZRxlcnulycdS15s-uQ5ngx4xP3T1v-gkJ3U,5435
|
|
32
32
|
arkitekt_next/cli/commands/inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
arkitekt_next/cli/commands/inspect/main.py,sha256=Bu1vAZudkFCtjDnZAB8yQLDt-UKY9pJGhLBlEfDqtkw,626
|
|
34
34
|
arkitekt_next/cli/commands/inspect/requirements.py,sha256=17rK6zviRpBDpaR-qpw5spb4ClTbKaG1d2ZQ-KiNV7I,2133
|
|
@@ -95,7 +95,7 @@ arkitekt_next/cli/utils.py,sha256=rl1hfQIVzepLHPN_ZWuvfVH-IIVqcSfiFGyfNtL1XCo,44
|
|
|
95
95
|
arkitekt_next/cli/validators.py,sha256=XkLrOrDzBJwcG1keTawa_NJPt3QIBhb5KjepeH4N1KA,719
|
|
96
96
|
arkitekt_next/cli/vars.py,sha256=ev7cKDSPoik8hU9A_ohNpjRZX4FT1GYJaBoGLnxCKjU,982
|
|
97
97
|
arkitekt_next/cli/versions/v1.yaml,sha256=rv2-F6FQbTZi_H6pSE_csdICdtKBObDdoo_asOFi43Y,12
|
|
98
|
-
arkitekt_next/constants.py,sha256=
|
|
98
|
+
arkitekt_next/constants.py,sha256=6t_Mf36ZwJF43yd38MtQyzBxeW5aagisl3MPMxpFDNE,101
|
|
99
99
|
arkitekt_next/model.py,sha256=6KYwSqWhI9CFhZIgip5ZddWleNBENGCAW2-ajtcOZSg,4476
|
|
100
100
|
arkitekt_next/qt/__init__.py,sha256=SVnuFY6eUXuG-mrm928RuYeMiunxlc73UsXDGV5DAuY,458
|
|
101
101
|
arkitekt_next/qt/assets/dark/gear.png,sha256=nYl1JZhcpwd7s5FgG2g-1RpkK7TH_QQRqJMmK6r0BpU,6296
|
|
@@ -111,11 +111,11 @@ arkitekt_next/qt/assets/light/red pulse.gif,sha256=U7WLbZvSl5e-Ob5RmawtlC0Rh9VVH
|
|
|
111
111
|
arkitekt_next/qt/builder.py,sha256=CWdFT9YERyMKGqPXdAdMFUbVt-HdJLN7Y4LqdK7xdGM,3371
|
|
112
112
|
arkitekt_next/qt/magic_bar.py,sha256=xo4_ReVYtpCwnRFTMBYvBEcVvY3JnNFbqYYY_-ez6vM,18242
|
|
113
113
|
arkitekt_next/qt/utils.py,sha256=MgBPtPmCSBkIuATov3UgREESwxAHh77lWNNxyE7Qs48,773
|
|
114
|
-
arkitekt_next/service_registry.py,sha256=
|
|
114
|
+
arkitekt_next/service_registry.py,sha256=pczUuP_Nve7OYwB7-oDBLIw6bkjZPnzL3xFca5TF1io,3405
|
|
115
115
|
arkitekt_next/tqdm.py,sha256=DlrxPluHao7TvW-Cqgt0UokRS-fM2_ZNiWiddqvCqCc,1488
|
|
116
116
|
arkitekt_next/utils.py,sha256=WA3AtqQFcz2h-yOadAsQkkr0qKJmKcGMi2aclxaVI_o,1278
|
|
117
|
-
arkitekt_next-0.7.
|
|
118
|
-
arkitekt_next-0.7.
|
|
119
|
-
arkitekt_next-0.7.
|
|
120
|
-
arkitekt_next-0.7.
|
|
121
|
-
arkitekt_next-0.7.
|
|
117
|
+
arkitekt_next-0.7.21.dist-info/LICENSE,sha256=YZ2oRjC248t-GpoEyw7J13vwKYNG6zhYMaEAix6EzF0,1089
|
|
118
|
+
arkitekt_next-0.7.21.dist-info/METADATA,sha256=5X5AcuRxw-iNrHA3Jt2JHHLkJQQQYvDwHoaRfLVPxjg,5500
|
|
119
|
+
arkitekt_next-0.7.21.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
120
|
+
arkitekt_next-0.7.21.dist-info/entry_points.txt,sha256=-hxikQx4xZ6TiOnWVDOlTN_kcAISgGFvTHXIchsCHSc,60
|
|
121
|
+
arkitekt_next-0.7.21.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|