podstack 1.3.6__tar.gz → 1.3.7__tar.gz
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.
- {podstack-1.3.6 → podstack-1.3.7}/PKG-INFO +1 -1
- {podstack-1.3.6 → podstack-1.3.7}/podstack/gpu_runner.py +4 -2
- {podstack-1.3.6 → podstack-1.3.7}/podstack.egg-info/PKG-INFO +1 -1
- {podstack-1.3.6 → podstack-1.3.7}/pyproject.toml +1 -1
- {podstack-1.3.6 → podstack-1.3.7}/LICENSE +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/README.md +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/__init__.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/annotations.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/client.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/exceptions.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/execution.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/models.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/notebook.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/registry/__init__.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/registry/client.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/registry/exceptions.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/registry/experiment.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/registry/model.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack/registry/model_utils.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack.egg-info/SOURCES.txt +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack.egg-info/dependency_links.txt +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack.egg-info/requires.txt +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack.egg-info/top_level.txt +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack_gpu/__init__.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack_gpu/app.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack_gpu/exceptions.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack_gpu/image.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack_gpu/runner.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack_gpu/secret.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack_gpu/utils.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/podstack_gpu/volume.py +0 -0
- {podstack-1.3.6 → podstack-1.3.7}/setup.cfg +0 -0
|
@@ -444,7 +444,8 @@ def _stream_install(cmd, description):
|
|
|
444
444
|
# Install pip packages using uv (faster)
|
|
445
445
|
_pip_packages = {repr(pip_list)}
|
|
446
446
|
_stream_install(
|
|
447
|
-
["uv", "pip", "install", "--system", "--progress"
|
|
447
|
+
["uv", "pip", "install", "--system", "--progress",
|
|
448
|
+
"--extra-index-url", "https://pypi.org/simple/"] + _pip_packages,
|
|
448
449
|
f"Installing pip packages with uv: {{' '.join(_pip_packages)}}"
|
|
449
450
|
)
|
|
450
451
|
''')
|
|
@@ -453,7 +454,8 @@ _stream_install(
|
|
|
453
454
|
# Install pip packages
|
|
454
455
|
_pip_packages = {repr(pip_list)}
|
|
455
456
|
_stream_install(
|
|
456
|
-
[sys.executable, "-m", "pip", "install", "--progress-bar", "on"
|
|
457
|
+
[sys.executable, "-m", "pip", "install", "--progress-bar", "on",
|
|
458
|
+
"--extra-index-url", "https://pypi.org/simple/"] + _pip_packages,
|
|
457
459
|
f"Installing pip packages: {{' '.join(_pip_packages)}}"
|
|
458
460
|
)
|
|
459
461
|
''')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|