truss 0.11.9rc3__py3-none-any.whl → 0.11.9rc5__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 truss might be problematic. Click here for more details.

@@ -1,4 +1,6 @@
1
1
  import logging
2
+ import os
3
+ import shutil
2
4
  import subprocess
3
5
  from pathlib import Path
4
6
  from typing import Optional
@@ -20,6 +22,8 @@ from helpers.truss_patch.model_code_patch_applier import apply_code_patch
20
22
  from truss.base.truss_config import ExternalData, ExternalDataItem, TrussConfig
21
23
  from truss.util.download import download_external_data
22
24
 
25
+ DEFAULT_PYTHON_EXECUTABLE = "python3"
26
+
23
27
 
24
28
  class ModelContainerPatchApplier:
25
29
  """Applies patches to container running a truss.
@@ -45,6 +49,14 @@ class ModelContainerPatchApplier:
45
49
  if uv_path is not None:
46
50
  self._uv_path_cached = uv_path
47
51
 
52
+ # NB(nikhil): Get full path to the python interpreter for pip patches.
53
+ self._python_executable = self._get_python_executable()
54
+
55
+ def _get_python_executable(self) -> str:
56
+ python_executable = os.environ.get("PYTHON_EXECUTABLE", "python3")
57
+ full_executable_path = shutil.which(python_executable)
58
+ return full_executable_path or python_executable
59
+
48
60
  def __call__(self, patch: Patch, inf_env: dict):
49
61
  self._app_logger.debug(f"Applying patch {patch.to_dict()}")
50
62
  if isinstance(patch.body, ModelCodePatch):
@@ -100,6 +112,8 @@ class ModelContainerPatchApplier:
100
112
  "uninstall",
101
113
  python_requirement_patch.requirement,
102
114
  "--yes",
115
+ "--python",
116
+ self._python_executable,
103
117
  ],
104
118
  check=True,
105
119
  )
@@ -111,6 +125,8 @@ class ModelContainerPatchApplier:
111
125
  "install",
112
126
  python_requirement_patch.requirement,
113
127
  "--upgrade",
128
+ "--python",
129
+ self._python_executable,
114
130
  ],
115
131
  check=True,
116
132
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: truss
3
- Version: 0.11.9rc3
3
+ Version: 0.11.9rc5
4
4
  Summary: A seamless bridge from model development to model delivery
5
5
  Project-URL: Repository, https://github.com/basetenlabs/truss
6
6
  Project-URL: Homepage, https://truss.baseten.co
@@ -84,7 +84,7 @@ truss/templates/control/control/helpers/inference_server_process_controller.py,s
84
84
  truss/templates/control/control/helpers/inference_server_starter.py,sha256=Fz2Puijro6Cc5cvTsAqOveNJbBQR_ARYJXl4lvETJ8Y,2633
85
85
  truss/templates/control/control/helpers/truss_patch/__init__.py,sha256=CXZdUV_ylqLTJrKuFpvSnUT6PUFrZrMF2y6jiHbdaKU,998
86
86
  truss/templates/control/control/helpers/truss_patch/model_code_patch_applier.py,sha256=LTIIADLz0wRn7V49j64dU1U7Hbta9YLde3pb5YZWvzQ,2001
87
- truss/templates/control/control/helpers/truss_patch/model_container_patch_applier.py,sha256=FIn79RsVUtR6_uDF310aOm3tyIZjPNe2a3uOexzAdNI,6589
87
+ truss/templates/control/control/helpers/truss_patch/model_container_patch_applier.py,sha256=VsOJYH40zv50bMDgaKe8HSRVju2kVaYou4NG25phKfE,7191
88
88
  truss/templates/control/control/helpers/truss_patch/requirement_name_identifier.py,sha256=CL3KEAj4B3ApMQShd7TI5umXVbazLZY5StrNlwHwWtc,1995
89
89
  truss/templates/control/control/helpers/truss_patch/system_packages.py,sha256=IYh1CVU_kooAvtSGXKQDDWnNdOhlv7ENWagsL1wvhgw,208
90
90
  truss/templates/custom/examples.yaml,sha256=2UcCtEdavImWmiCtj31ckBlAKVOwNMC5AwMIIznKDag,48
@@ -369,8 +369,8 @@ truss_train/deployment.py,sha256=lWWANSuzBWu2M4oK4qD7n-oVR1JKdmw2Pn5BJQHg-Ck,307
369
369
  truss_train/loader.py,sha256=0o66EjBaHc2YY4syxxHVR4ordJWs13lNXnKjKq2wq0U,1630
370
370
  truss_train/public_api.py,sha256=9N_NstiUlmBuLUwH_fNG_1x7OhGCytZLNvqKXBlStrM,1220
371
371
  truss_train/restore_from_checkpoint.py,sha256=8hdPm-WSgkt74HDPjvCjZMBpvA9MwtoYsxVjOoa7BaM,1176
372
- truss-0.11.9rc3.dist-info/METADATA,sha256=nKIkoDKhAZJh3mxQd1ePyp9WSAAe3VKhV7KcShXDU4Q,6680
373
- truss-0.11.9rc3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
374
- truss-0.11.9rc3.dist-info/entry_points.txt,sha256=-MwKfHHQHQ6j0HqIgvxrz3CehCmczDLTD-OsRHnjjuU,130
375
- truss-0.11.9rc3.dist-info/licenses/LICENSE,sha256=FTqGzu85i-uw1Gi8E_o0oD60bH9yQ_XIGtZbA1QUYiw,1064
376
- truss-0.11.9rc3.dist-info/RECORD,,
372
+ truss-0.11.9rc5.dist-info/METADATA,sha256=DVCMx2eswWwbB5hv2xUPXB_JMgZt204AyQ41l8DRlOM,6680
373
+ truss-0.11.9rc5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
374
+ truss-0.11.9rc5.dist-info/entry_points.txt,sha256=-MwKfHHQHQ6j0HqIgvxrz3CehCmczDLTD-OsRHnjjuU,130
375
+ truss-0.11.9rc5.dist-info/licenses/LICENSE,sha256=FTqGzu85i-uw1Gi8E_o0oD60bH9yQ_XIGtZbA1QUYiw,1064
376
+ truss-0.11.9rc5.dist-info/RECORD,,