pybiolib 1.2.1034__py3-none-any.whl → 1.2.1040__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/_runtime/runtime.py +6 -2
- {pybiolib-1.2.1034.dist-info → pybiolib-1.2.1040.dist-info}/METADATA +1 -1
- {pybiolib-1.2.1034.dist-info → pybiolib-1.2.1040.dist-info}/RECORD +6 -6
- {pybiolib-1.2.1034.dist-info → pybiolib-1.2.1040.dist-info}/LICENSE +0 -0
- {pybiolib-1.2.1034.dist-info → pybiolib-1.2.1040.dist-info}/WHEEL +0 -0
- {pybiolib-1.2.1034.dist-info → pybiolib-1.2.1040.dist-info}/entry_points.txt +0 -0
biolib/_runtime/runtime.py
CHANGED
@@ -30,8 +30,12 @@ class Runtime:
|
|
30
30
|
return Runtime._get_job_data()['job_auth_token']
|
31
31
|
|
32
32
|
@staticmethod
|
33
|
-
def get_job_requested_machine() -> str:
|
34
|
-
|
33
|
+
def get_job_requested_machine() -> Optional[str]:
|
34
|
+
job_data = Runtime._get_job_data()
|
35
|
+
job_requested_machine = job_data.get('job_requested_machine')
|
36
|
+
if not job_requested_machine:
|
37
|
+
return None
|
38
|
+
return job_requested_machine
|
35
39
|
|
36
40
|
@staticmethod
|
37
41
|
def get_app_uri() -> str:
|
@@ -61,7 +61,7 @@ biolib/_internal/types/typing.py,sha256=qrsk8hHcGEbDpU1QQFzHAKnhQxkMe7uJ6pxHeAnf
|
|
61
61
|
biolib/_internal/types/user.py,sha256=5_hYG0jrdGxynCCWXGaHZCAlVcRKBqMIEA2EBGrnpiE,439
|
62
62
|
biolib/_internal/utils/__init__.py,sha256=p5vsIFyu-zYqBgdSMfwW9NC_jk7rXvvCbV4Bzd3As7c,630
|
63
63
|
biolib/_internal/utils/multinode.py,sha256=N7kR49xD1PdkMVlxxzRiSYHfgi9MG-kLCwemcY1rojg,8323
|
64
|
-
biolib/_runtime/runtime.py,sha256=
|
64
|
+
biolib/_runtime/runtime.py,sha256=vRJ0YFSGYVHWULam_fnS2EHmNEm_qkrJXWdsy0n8JDA,5857
|
65
65
|
biolib/_session/session.py,sha256=US1Y1jfFIAm86-Lq3C7nCXpZXUJXXBVBkND9djMNYxI,1649
|
66
66
|
biolib/api/__init__.py,sha256=mQ4u8FijqyLzjYMezMUUbbBGNB3iFmkNdjXnWPZ7Jlw,138
|
67
67
|
biolib/api/client.py,sha256=2GpKE7QrPgyPdgJgrV7XnZByIJf1n26UCy3aoaHBs1M,7881
|
@@ -155,8 +155,8 @@ biolib/utils/cache_state.py,sha256=u256F37QSRIVwqKlbnCyzAX4EMI-kl6Dwu6qwj-Qmag,3
|
|
155
155
|
biolib/utils/multipart_uploader.py,sha256=XvGP1I8tQuKhAH-QugPRoEsCi9qvbRk-DVBs5PNwwJo,8452
|
156
156
|
biolib/utils/seq_util.py,sha256=Ozk0blGtPur_D9MwShD02r_mphyQmgZkx-lOHOwnlIM,6730
|
157
157
|
biolib/utils/zip/remote_zip.py,sha256=0wErYlxir5921agfFeV1xVjf29l9VNgGQvNlWOlj2Yc,23232
|
158
|
-
pybiolib-1.2.
|
159
|
-
pybiolib-1.2.
|
160
|
-
pybiolib-1.2.
|
161
|
-
pybiolib-1.2.
|
162
|
-
pybiolib-1.2.
|
158
|
+
pybiolib-1.2.1040.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
|
159
|
+
pybiolib-1.2.1040.dist-info/METADATA,sha256=ZE21EcNNK-SMDaPA34V7SsHPrraMdCR7sLXLfWsHEx8,1571
|
160
|
+
pybiolib-1.2.1040.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
161
|
+
pybiolib-1.2.1040.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
|
162
|
+
pybiolib-1.2.1040.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|