pybiolib 1.2.897__py3-none-any.whl → 1.2.904__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.
- biolib/_internal/push_application.py +2 -0
- biolib/_internal/types/account.py +9 -0
- biolib/_internal/types/user.py +19 -0
- {pybiolib-1.2.897.dist-info → pybiolib-1.2.904.dist-info}/METADATA +1 -1
- {pybiolib-1.2.897.dist-info → pybiolib-1.2.904.dist-info}/RECORD +8 -6
- {pybiolib-1.2.897.dist-info → pybiolib-1.2.904.dist-info}/LICENSE +0 -0
- {pybiolib-1.2.897.dist-info → pybiolib-1.2.904.dist-info}/WHEEL +0 -0
- {pybiolib-1.2.897.dist-info → pybiolib-1.2.904.dist-info}/entry_points.txt +0 -0
@@ -149,6 +149,8 @@ def _process_docker_status_updates_with_logging(status_updates: Iterable[DockerS
|
|
149
149
|
last_log_time = current_time
|
150
150
|
|
151
151
|
_log_progress_summary(action, layer_progress, layer_status)
|
152
|
+
if action == 'Pushing':
|
153
|
+
logger.info('Pushing final image manifest...')
|
152
154
|
logger.info(f'{action} Docker image completed')
|
153
155
|
|
154
156
|
|
@@ -0,0 +1,19 @@
|
|
1
|
+
from .account import AccountDict
|
2
|
+
from .typing import List, Optional, TypedDict
|
3
|
+
|
4
|
+
|
5
|
+
class EnterpriseSettings(TypedDict):
|
6
|
+
dashboard_message: Optional[str]
|
7
|
+
docs_message: Optional[str]
|
8
|
+
featured_dashboard_app: Optional[str]
|
9
|
+
|
10
|
+
|
11
|
+
class User(TypedDict):
|
12
|
+
email: str
|
13
|
+
enterprise_settings: Optional[EnterpriseSettings]
|
14
|
+
groups: List[AccountDict]
|
15
|
+
intrinsic_account: AccountDict
|
16
|
+
|
17
|
+
|
18
|
+
class UserDetailed(TypedDict):
|
19
|
+
pass
|
@@ -22,7 +22,7 @@ biolib/_internal/llm_instructions/.github/instructions/style-react-ts.instructio
|
|
22
22
|
biolib/_internal/llm_instructions/.github/prompts/biolib_app_inputs.prompt.md,sha256=SMzXZImdID0yKjhE1fG54VrHdD8IVuwRxRKsMF-KjWs,697
|
23
23
|
biolib/_internal/llm_instructions/.github/prompts/biolib_run_apps.prompt.md,sha256=-t1bmGr3zEFa6lKHaLcI98yq4Sg1TCMW8xbelNSHaOA,696
|
24
24
|
biolib/_internal/llm_instructions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
|
-
biolib/_internal/push_application.py,sha256=
|
25
|
+
biolib/_internal/push_application.py,sha256=e0SnPh64X99ICUt5xPCIfbS3WHkUzMKLFFyaf6u2vqQ,18286
|
26
26
|
biolib/_internal/runtime.py,sha256=BiHl4klUHr36MCpqKaUso4idHeBZfPAahLYRQrabFqA,486
|
27
27
|
biolib/_internal/templates/__init__.py,sha256=NVbhLUMC8HITzkLvP88Qu7FHaL-SvQord-DX3gh1Ykk,24
|
28
28
|
biolib/_internal/templates/init_template/.biolib/config.yml,sha256=y4ndTgbFvUE1UiGcIOqogT2Wm8jahGffeyU5rlCEltQ,427
|
@@ -35,6 +35,7 @@ biolib/_internal/templates/init_template/run.sh,sha256=CF25MYW8vNcZee6_Lydg0o5JD
|
|
35
35
|
biolib/_internal/templates/templates.py,sha256=-o0VdRMwPhnzL4VlCe3BZYl1aI9HLKtOmNjs6gu9fIQ,101
|
36
36
|
biolib/_internal/tree_utils.py,sha256=_Q_6_NDtIiROcefymqxEVddjqti6Mt3OZ4U0GcDW61s,3904
|
37
37
|
biolib/_internal/types/__init__.py,sha256=WvtlSHh77QhYVTLeRpoPAzqvByLzbEPf_ZqYGHFlQug,247
|
38
|
+
biolib/_internal/types/account.py,sha256=8OT2zzIZdtV6_RfAWjMqtQ5F6EOtABu3bJ5ecwCoZAo,120
|
38
39
|
biolib/_internal/types/app.py,sha256=Mz2QGD_jESX-K9JYnLWPo4YA__Q_1FQQTk9pvidCohU,118
|
39
40
|
biolib/_internal/types/data_record.py,sha256=9r_vdhVs60YTnzU4XQFXfDrfS2P2MqD3BH2xa7lk6ck,852
|
40
41
|
biolib/_internal/types/experiment.py,sha256=2SbCLSwgLglmQgyUHYb5SvO0Cfsgs-f3jqao9--Z_sY,682
|
@@ -45,6 +46,7 @@ biolib/_internal/types/resource_permission.py,sha256=ZE7eokpzswAiqe4GdpdxdZ6_jl0
|
|
45
46
|
biolib/_internal/types/resource_version.py,sha256=cU0YFHqxO-wX_Y6CoeK0Iei61gFwVoyR_kPOSTQ4mCs,304
|
46
47
|
biolib/_internal/types/result.py,sha256=MesSTBXCkaw8HydXgHf1OKGVLzsxhZ1KV5z4w-VI-0M,231
|
47
48
|
biolib/_internal/types/typing.py,sha256=qrsk8hHcGEbDpU1QQFzHAKnhQxkMe7uJ6pxHeAnfv1Y,414
|
49
|
+
biolib/_internal/types/user.py,sha256=IfsjLtnLG1Duwg8oe7woAt0VQPysQILZ0r5XWttnMg8,430
|
48
50
|
biolib/_internal/utils/__init__.py,sha256=p5vsIFyu-zYqBgdSMfwW9NC_jk7rXvvCbV4Bzd3As7c,630
|
49
51
|
biolib/_internal/utils/multinode.py,sha256=-J3PEAK3NaOwCn--5T7vWHkA3yu5w9QhmuhkQcH-2wY,8229
|
50
52
|
biolib/_runtime/runtime.py,sha256=Z9YVF8e2A1VMdndEf7CIGqvVKHS7FPY0VGmRgLBB7ck,5699
|
@@ -141,8 +143,8 @@ biolib/utils/cache_state.py,sha256=u256F37QSRIVwqKlbnCyzAX4EMI-kl6Dwu6qwj-Qmag,3
|
|
141
143
|
biolib/utils/multipart_uploader.py,sha256=XvGP1I8tQuKhAH-QugPRoEsCi9qvbRk-DVBs5PNwwJo,8452
|
142
144
|
biolib/utils/seq_util.py,sha256=Ozk0blGtPur_D9MwShD02r_mphyQmgZkx-lOHOwnlIM,6730
|
143
145
|
biolib/utils/zip/remote_zip.py,sha256=0wErYlxir5921agfFeV1xVjf29l9VNgGQvNlWOlj2Yc,23232
|
144
|
-
pybiolib-1.2.
|
145
|
-
pybiolib-1.2.
|
146
|
-
pybiolib-1.2.
|
147
|
-
pybiolib-1.2.
|
148
|
-
pybiolib-1.2.
|
146
|
+
pybiolib-1.2.904.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
|
147
|
+
pybiolib-1.2.904.dist-info/METADATA,sha256=ZYj0kywHcR_3a9-NbrBnytPihIydxkghgKe1PJTbT5U,1570
|
148
|
+
pybiolib-1.2.904.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
149
|
+
pybiolib-1.2.904.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
|
150
|
+
pybiolib-1.2.904.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|