isolate 0.19.2__py3-none-any.whl → 0.20.0__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 isolate might be problematic. Click here for more details.
- isolate/_isolate_version.py +2 -2
- isolate/connections/_local/_base.py +11 -2
- {isolate-0.19.2.dist-info → isolate-0.20.0.dist-info}/METADATA +1 -1
- {isolate-0.19.2.dist-info → isolate-0.20.0.dist-info}/RECORD +8 -8
- {isolate-0.19.2.dist-info → isolate-0.20.0.dist-info}/WHEEL +0 -0
- {isolate-0.19.2.dist-info → isolate-0.20.0.dist-info}/entry_points.txt +0 -0
- {isolate-0.19.2.dist-info → isolate-0.20.0.dist-info}/licenses/LICENSE +0 -0
- {isolate-0.19.2.dist-info → isolate-0.20.0.dist-info}/top_level.txt +0 -0
isolate/_isolate_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.
|
|
32
|
-
__version_tuple__ = version_tuple = (0,
|
|
31
|
+
__version__ = version = '0.20.0'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 20, 0)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -16,7 +16,7 @@ from typing import (
|
|
|
16
16
|
)
|
|
17
17
|
|
|
18
18
|
from isolate import __version__ as isolate_version
|
|
19
|
-
from isolate.backends.common import get_executable_path, logged_io
|
|
19
|
+
from isolate.backends.common import active_python, get_executable_path, logged_io
|
|
20
20
|
from isolate.connections.common import AGENT_SIGNATURE
|
|
21
21
|
from isolate.logs import LogLevel, LogSource
|
|
22
22
|
|
|
@@ -112,7 +112,16 @@ class PythonExecutionBase(Generic[ConnectionType]):
|
|
|
112
112
|
"""Start the agent process with the Python binary available inside the
|
|
113
113
|
bound environment."""
|
|
114
114
|
|
|
115
|
-
|
|
115
|
+
python_version = getattr(self.environment, "python_version", active_python())
|
|
116
|
+
try:
|
|
117
|
+
# prefer the specific version if available.
|
|
118
|
+
python_executable = get_executable_path(
|
|
119
|
+
self.environment_path, f"python{python_version}"
|
|
120
|
+
)
|
|
121
|
+
except FileNotFoundError:
|
|
122
|
+
# fallback to the generic binary.
|
|
123
|
+
python_executable = get_executable_path(self.environment_path, "python")
|
|
124
|
+
|
|
116
125
|
with logged_io(
|
|
117
126
|
partial(
|
|
118
127
|
self.handle_agent_log, source=LogSource.USER, level=LogLevel.STDOUT
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
isolate/__init__.py,sha256=uXOKnONs7sXgARNgElwr4_A1sKoA6ACHVEvs3IDiX1M,127
|
|
2
|
-
isolate/_isolate_version.py,sha256=
|
|
2
|
+
isolate/_isolate_version.py,sha256=D0Phtt01o1VQl6Hc5KWgvKucsJ2Ve2ykSmH5eQWQ0zU,706
|
|
3
3
|
isolate/_version.py,sha256=05pXvy-yr5t3I1m9JMn42Ilzpg7fa8IB2J8a3G7t1cU,274
|
|
4
4
|
isolate/logger.py,sha256=IXPebob_fV8bl8HAyKcheXcTJocfdWk-v-ujSl13oVA,1718
|
|
5
5
|
isolate/logs.py,sha256=R_AHUVYD18z_PhtK_mDWi9Gch79CxmwHY09hUDShtwg,2079
|
|
@@ -20,7 +20,7 @@ isolate/common/timestamp.py,sha256=seh7FrMRH4i1SCQavA8d-7z8qi0pP8lYYhd29gTPMwE,3
|
|
|
20
20
|
isolate/connections/__init__.py,sha256=oa0PNo7ZQ0StPIDvKnJ02_CNVMyfOhxJ3M1C0VMvj9c,627
|
|
21
21
|
isolate/connections/common.py,sha256=qR4_v4fccpGoUdFHA1Hx1arSe01J3IIom9uhSKE72uQ,3709
|
|
22
22
|
isolate/connections/_local/__init__.py,sha256=6FtCKRSFBvTvjm5LNlNA-mieKEq3J7DZZRPcXVedERo,146
|
|
23
|
-
isolate/connections/_local/_base.py,sha256=
|
|
23
|
+
isolate/connections/_local/_base.py,sha256=tZkCUSFMV7pgxRLnvhzBmQYw7ri_8QH1KqojoH4FXD0,7063
|
|
24
24
|
isolate/connections/_local/agent_startup.py,sha256=F6f75vCy7KJiAoP7xAMO2XnkYpsi5TRCVWi4pmGkoU8,1844
|
|
25
25
|
isolate/connections/grpc/__init__.py,sha256=tcesLxlC36P6wSg2lBcO2egsJWMbSKwc8zFXhWac3YU,85
|
|
26
26
|
isolate/connections/grpc/_base.py,sha256=kUB-EDetcyb0fsYfH25E14DrxbVXe19bEH4u5b0-Gqw,5656
|
|
@@ -53,9 +53,9 @@ isolate/server/health/health.proto,sha256=wE2_QD0OQAblKkEBG7sALLXEOj1mOLKG-FbC4t
|
|
|
53
53
|
isolate/server/health/health_pb2.py,sha256=-fd91wiaZOSJj_zeo55IqxMBsQGuGF-yjZS-Wc1RaS0,1897
|
|
54
54
|
isolate/server/health/health_pb2.pyi,sha256=AK-DPCpJzoYhU6DydD856c0Ywx84x6k-Cs4m6HpNv5A,2459
|
|
55
55
|
isolate/server/health/health_pb2_grpc.py,sha256=BrwuS8t4w6K-XVxIdrUQj5Rn0FAMXrYB2iFgUfeXGMM,3913
|
|
56
|
-
isolate-0.
|
|
57
|
-
isolate-0.
|
|
58
|
-
isolate-0.
|
|
59
|
-
isolate-0.
|
|
60
|
-
isolate-0.
|
|
61
|
-
isolate-0.
|
|
56
|
+
isolate-0.20.0.dist-info/licenses/LICENSE,sha256=427vuyirL5scgBLqA9UWcdnxKrtSGc0u_JfUupk6lAA,11359
|
|
57
|
+
isolate-0.20.0.dist-info/METADATA,sha256=Gf7IdWon5I6Ied9yB53aBrpafXO5LFVuvhWEjsiYEVQ,3201
|
|
58
|
+
isolate-0.20.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
59
|
+
isolate-0.20.0.dist-info/entry_points.txt,sha256=s3prh2EERaVCbL8R45tfY5WFPZ1TsYOsz305YR7s-Pc,360
|
|
60
|
+
isolate-0.20.0.dist-info/top_level.txt,sha256=W9QJBHcq5WXRkbOXf25bvftzFsOZZN4n1DAatdroZrs,8
|
|
61
|
+
isolate-0.20.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|