torchx-nightly 2026.1.11__py3-none-any.whl → 2026.1.22__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.
torchx/cli/cmd_list.py CHANGED
@@ -11,7 +11,6 @@ import argparse
11
11
  import logging
12
12
 
13
13
  from tabulate import tabulate
14
-
15
14
  from torchx.cli.cmd_base import SubCommand
16
15
  from torchx.runner import get_runner
17
16
  from torchx.schedulers import get_default_scheduler_name, get_scheduler_factories
torchx/cli/cmd_log.py CHANGED
@@ -27,7 +27,6 @@ from torchx.util.log_tee_helpers import (
27
27
  _find_role_replicas as find_role_replicas,
28
28
  _prefix_line,
29
29
  )
30
-
31
30
  from torchx.util.types import none_throws
32
31
 
33
32
  logger: logging.Logger = logging.getLogger(__name__)
torchx/cli/cmd_tracker.py CHANGED
@@ -10,7 +10,6 @@ import argparse
10
10
  import logging
11
11
 
12
12
  from tabulate import tabulate
13
-
14
13
  from torchx.cli.cmd_base import SubCommand
15
14
  from torchx.runner.api import get_configured_trackers
16
15
  from torchx.tracker.api import build_trackers, TrackerBase
@@ -25,9 +25,7 @@ from types import ModuleType
25
25
  from typing import Any, Callable, Dict, Optional
26
26
 
27
27
  from torchx.runner import get_runner
28
-
29
28
  from torchx.specs import AppDef, AppStatus
30
-
31
29
  from torchx.specs.builders import _create_args_parser
32
30
  from torchx.specs.finder import get_component
33
31
 
@@ -18,7 +18,6 @@ from torchx.cli.cmd_log import get_logs
18
18
  from torchx.components.integration_tests.component_provider import ComponentProvider
19
19
  from torchx.runner import get_runner
20
20
  from torchx.specs import AppHandle, AppState, AppStatus, CfgVal
21
-
22
21
  from torchx.util.types import none_throws
23
22
 
24
23
 
@@ -17,7 +17,6 @@ from typing import Any, Iterator
17
17
  import torch
18
18
  import torch.distributed as dist
19
19
  from torch.distributed.distributed_c10d import _get_default_group
20
-
21
20
  from torchx.util.cuda import has_cuda_devices
22
21
  from typing_extensions import Literal
23
22
 
@@ -20,7 +20,6 @@ import time
20
20
  from typing import Dict
21
21
 
22
22
  from pytorch_lightning.loggers.logger import Logger
23
-
24
23
  from pytorch_lightning.profilers.profiler import Profiler
25
24
 
26
25
 
torchx/runner/api.py CHANGED
@@ -52,7 +52,6 @@ from torchx.tracker.api import (
52
52
  tracker_config_env_var_name,
53
53
  )
54
54
  from torchx.util.session import get_session_id_or_create_new, TORCHX_INTERNAL_SESSION_ID
55
-
56
55
  from torchx.util.types import none_throws
57
56
  from torchx.workspace import WorkspaceMixin
58
57
 
@@ -66,7 +66,6 @@ from torchx.schedulers.api import (
66
66
  Scheduler,
67
67
  Stream,
68
68
  )
69
-
70
69
  from torchx.schedulers.devices import get_device_mounts
71
70
  from torchx.schedulers.ids import make_unique
72
71
  from torchx.specs.api import (
@@ -188,7 +187,7 @@ def resource_requirements_from_resource(resource: Resource) -> List[Dict[str, st
188
187
 
189
188
 
190
189
  def resource_from_resource_requirements(
191
- resource_requirements: List[Dict[str, str]]
190
+ resource_requirements: List[Dict[str, str]],
192
191
  ) -> Resource:
193
192
  resrc_req = {
194
193
  ResourceType.from_str(r["type"]): int(r["value"]) for r in resource_requirements
@@ -31,7 +31,6 @@ from typing import (
31
31
 
32
32
  import boto3
33
33
  import yaml
34
-
35
34
  from sagemaker.pytorch import PyTorch
36
35
  from torchx.components.structured_arg import StructuredNameArgument
37
36
  from torchx.schedulers.api import (
@@ -32,7 +32,6 @@ Learn more about running distributed trainers :py:mod:`torchx.components.dist`
32
32
  import json
33
33
  import logging
34
34
  import re
35
-
36
35
  import warnings
37
36
  from dataclasses import dataclass
38
37
  from datetime import datetime
@@ -77,7 +76,6 @@ from torchx.specs.api import (
77
76
  runopts,
78
77
  VolumeMount,
79
78
  )
80
-
81
79
  from torchx.workspace.docker_workspace import DockerWorkspaceMixin
82
80
 
83
81
  if TYPE_CHECKING:
@@ -55,7 +55,6 @@ from torchx.schedulers.ids import make_unique
55
55
  from torchx.schedulers.streams import Tee
56
56
  from torchx.specs import AppDryRunInfo
57
57
  from torchx.specs.api import AppDef, AppState, is_terminal, macros, NONE, Role, runopts
58
-
59
58
  from torchx.util.types import none_throws
60
59
 
61
60
  log: logging.Logger = logging.getLogger(__name__)
torchx/specs/__init__.py CHANGED
@@ -12,7 +12,6 @@ used by components to define the apps which can then be launched via a TorchX
12
12
  scheduler or pipeline adapter.
13
13
  """
14
14
  import difflib
15
-
16
15
  import os
17
16
  from typing import Callable, Dict, Iterator, Mapping, Optional
18
17
 
@@ -50,9 +49,7 @@ from torchx.specs.api import (
50
49
  Workspace,
51
50
  )
52
51
  from torchx.specs.builders import make_app_handle, materialize_appdef, parse_mounts
53
-
54
52
  from torchx.util.entrypoints import load_group
55
-
56
53
  from torchx.util.modules import import_attr
57
54
 
58
55
  GiB: int = 1024
torchx/specs/finder.py CHANGED
@@ -20,7 +20,6 @@ from types import ModuleType
20
20
  from typing import Callable, Dict, Generator, List, Optional, Union
21
21
 
22
22
  from torchx.specs import AppDef
23
-
24
23
  from torchx.specs.file_linter import (
25
24
  ComponentFunctionValidator,
26
25
  get_fn_docstring,
torchx/tracker/api.py CHANGED
@@ -179,7 +179,7 @@ def _extract_tracker_name_and_config_from_environ() -> Mapping[str, Optional[str
179
179
 
180
180
 
181
181
  def build_trackers(
182
- factory_and_config: Mapping[str, Optional[str]]
182
+ factory_and_config: Mapping[str, Optional[str]],
183
183
  ) -> Iterable[TrackerBase]:
184
184
  trackers = []
185
185
 
@@ -16,7 +16,6 @@ from dataclasses import dataclass
16
16
  from typing import Any, Dict, Iterable, Mapping, Optional
17
17
 
18
18
  import fsspec
19
-
20
19
  from torchx.tracker.api import Lineage, TrackerArtifact, TrackerBase, TrackerSource
21
20
 
22
21
 
torchx/tracker/mlflow.py CHANGED
@@ -16,7 +16,6 @@ from typing import Any, Dict, Iterable, Mapping, Optional, Sequence
16
16
  import mlflow
17
17
  from mlflow import MlflowClient
18
18
  from mlflow.entities import Experiment, Run
19
-
20
19
  from torchx.distributed import on_rank0_first
21
20
  from torchx.runner.config import get_configs
22
21
  from torchx.tracker.api import (
@@ -16,7 +16,6 @@ import tempfile
16
16
  from typing import Dict, IO, Iterable, Mapping, Optional, TextIO, Tuple, TYPE_CHECKING
17
17
 
18
18
  import fsspec
19
-
20
19
  import torchx
21
20
  from docker.errors import BuildError
22
21
  from torchx.specs import AppDef, CfgVal, Role, runopts
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: torchx-nightly
3
- Version: 2026.1.11
3
+ Version: 2026.1.22
4
4
  Summary: TorchX SDK and Components
5
5
  Home-page: https://github.com/meta-pytorch/torchx
6
6
  Author: TorchX Devs
@@ -16,16 +16,16 @@ torchx/cli/cmd_cancel.py,sha256=NKfOCu_44Lch9vliGSQ0Uv6BVqpUqj7Tob652TI-ua4,835
16
16
  torchx/cli/cmd_configure.py,sha256=1kTv0qbsbV44So74plAySwWu56pQrqjhfW_kbfdC3Rw,1722
17
17
  torchx/cli/cmd_delete.py,sha256=US1f6Jvyhz4R_0Q0a8GeNTDMrhzo8WE_ECcdOf0MjKE,835
18
18
  torchx/cli/cmd_describe.py,sha256=E5disbHoKTsqYKp2s3DaFW9GDLCCOgdOc3pQoHKoyCs,1283
19
- torchx/cli/cmd_list.py,sha256=alkS9aIaDI8lX3W8uj8Vtr3IU3G2VeCuokKSd3zOFug,1409
20
- torchx/cli/cmd_log.py,sha256=v-EZYUDOcG95rEgTnrsmPJMUyxM9Mk8YFAJtUxtgViE,5475
19
+ torchx/cli/cmd_list.py,sha256=deu920UTFJFTNVBdgSXhgMUpbJF4G9-xNny6XIqU4KA,1408
20
+ torchx/cli/cmd_log.py,sha256=nEzwVs1QwtrDFXtiAgPXnCu2YiBgVAtACIdpOSAYAU8,5474
21
21
  torchx/cli/cmd_run.py,sha256=z8wS-M2W9hHZfLkA6DFiV6Y0LFS9KfEBc_NTwAwdviQ,18780
22
22
  torchx/cli/cmd_runopts.py,sha256=NWZiP8XpQjfTDJgays2c6MgL_8wxFoeDge6NstaZdKk,1302
23
23
  torchx/cli/cmd_status.py,sha256=22IAEmKs0qkG6kJi83u9dRX2Q-ntT7yehVx7FxtY-vQ,2114
24
- torchx/cli/cmd_tracker.py,sha256=9gmOmYi-89qQRGQfSrXCTto7ve54_JKFqs_wa7oRUA8,5223
24
+ torchx/cli/cmd_tracker.py,sha256=pWVqXGUiwPE5_aWPCn_j-ov2EQkH2f0Xdv5DZW5U3Tg,5222
25
25
  torchx/cli/colors.py,sha256=yLMes7e_UoLAfhxE0W6edhc58t83UHAlnCN2ANPeuXw,568
26
26
  torchx/cli/main.py,sha256=1DJTmKdvPW_7hod8OUVT3Br2uwsZVEDU-2bTE0NJ0zY,3559
27
27
  torchx/components/__init__.py,sha256=JaVte0j9Gqi6IrjZKudJ2Kr3gkdHsvlCdRTo-zYpSRo,11815
28
- torchx/components/component_test_base.py,sha256=22iNSdVa_qTW3SMM30Pw5UEWlK4DZVw0C03EqYiaLOI,4150
28
+ torchx/components/component_test_base.py,sha256=2kIC7odZQwpsFRjdHW1m0_BY5Uh6IZlIOx0bWgLB_JI,4148
29
29
  torchx/components/dist.py,sha256=6DNPEvHVqEifmM8g1L7HVY169cQv_7tSfSlh3o6lTp4,14930
30
30
  torchx/components/interpret.py,sha256=g8gkKdDJvsBfX1ZrpVT7n2bMEtmwRV_1AqDyAnnQ_aA,697
31
31
  torchx/components/metrics.py,sha256=1gbp8BfzZWGa7PD1db5vRADlONzmae4qSBUUdCWayr0,2814
@@ -35,8 +35,8 @@ torchx/components/train.py,sha256=vtrQXRcD7bIcbb3lSeyD9BBlIe1mv1WNW6rnLK9R0Mw,12
35
35
  torchx/components/utils.py,sha256=IMjihhgs7nO67YtTetUBjN_CRpyIyyQsaJBkp7mpHfk,9368
36
36
  torchx/components/integration_tests/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
37
37
  torchx/components/integration_tests/component_provider.py,sha256=g-4ig1vtd5Vzgug0VAKRAFUt6KAV3TgQrBCrwRSJ7ZY,3981
38
- torchx/components/integration_tests/integ_tests.py,sha256=O8jd8Jq5O0mns7xzIFsHexBDHkIIAIfELQkWCzNPzRw,5165
39
- torchx/distributed/__init__.py,sha256=kh9YzDwWX7zFJJ8StR9qhMM2V3-66INs9i3ztDF-1ho,10252
38
+ torchx/components/integration_tests/integ_tests.py,sha256=JrOAauk4xbB3bB_yf8yZl69ddTESdacEf9JrMHcoaJU,5164
39
+ torchx/distributed/__init__.py,sha256=m0QXzwqpXyubk4g7JB79tHjT3Ab5JiVCQM7MRf5H9a0,10251
40
40
  torchx/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  torchx/examples/torchx_out_of_sync_training.py,sha256=sXiI1G8aGsfuvxRdBszDgM8pSplqhgfXjRnAcgRwNGM,397
42
42
  torchx/examples/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -46,11 +46,11 @@ torchx/examples/apps/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
46
46
  torchx/examples/apps/lightning/data.py,sha256=kSv_DFqtFVkNjZ46HT7GApImc9lMD7liy929dUrFWwM,6610
47
47
  torchx/examples/apps/lightning/interpret.py,sha256=Hd3kE5a6FyhxCmJBfTzb4Tlj518zhX8V0XvZfzu4nqE,5256
48
48
  torchx/examples/apps/lightning/model.py,sha256=4CgObWfANqDN9emYSdmCpbRe_V_Lef_Hd3M-yayDbZE,4045
49
- torchx/examples/apps/lightning/profiler.py,sha256=SSSihnwjeUTkBoz0E3qn1b-wbkfUIowscx2ND_37zyw,1915
49
+ torchx/examples/apps/lightning/profiler.py,sha256=ogL3mO4YGPebdCFckkeHX3BzJD3niU189DCnrBEoBGI,1914
50
50
  torchx/examples/apps/lightning/train.py,sha256=0wvvshGHvZowePB4LfclXwn40X7i9euM0ReETWBcPSo,6253
51
51
  torchx/pipelines/__init__.py,sha256=2MbRVk5xwRjg-d2qPemeXpEhDsocMQumPQ53lsesZAI,606
52
52
  torchx/runner/__init__.py,sha256=x8Sz7s_tLxPgJgvWIhK4ju9BNZU61uBFywGwDY6CqJs,315
53
- torchx/runner/api.py,sha256=Qi12Kjkr_zpQBesbLuCtgKET8JhHnQk22MV7Czi4l1A,30832
53
+ torchx/runner/api.py,sha256=tN8087Hi7OHX1lVCmjccFgM1tcZwaxeJGMIvE4ZDrb4,30831
54
54
  torchx/runner/config.py,sha256=SaKOB50d79WaMFPWK8CC4as6UaNFaRGhrBkfajq3KC4,18311
55
55
  torchx/runner/events/__init__.py,sha256=cMiNjnr4eUNQ2Nxxtu4nsvN5lu56b-a6nJ-ct3i7DQk,5536
56
56
  torchx/runner/events/api.py,sha256=bvxKBAYK8LzbrBNaNLgL1x0aivtfANmWo1EMGOrSR8k,2668
@@ -60,22 +60,22 @@ torchx/runtime/tracking/__init__.py,sha256=dYnAPnrXYREfPXkpHhdOFkcYIODWEbA13PdD-
60
60
  torchx/runtime/tracking/api.py,sha256=SmUQyUKZqG3KlAhT7CJOGqRz1O274E4m63wQeOVq3CU,5472
61
61
  torchx/schedulers/__init__.py,sha256=FQN9boQM4mwOD3sK9LZ3GBgw-gJ7Vx4MFj6z6ATQIrc,2211
62
62
  torchx/schedulers/api.py,sha256=wT9H_ZTmpTHHweevDJbkV7NKXfwileHrt1bbhhCgj3c,16488
63
- torchx/schedulers/aws_batch_scheduler.py,sha256=b6xC4BQKb7zagOGS6_z3_6fmOLsSEOxSprkGUE-yfJE,29412
64
- torchx/schedulers/aws_sagemaker_scheduler.py,sha256=DnNF6huHGZLSUGWqKml4qGiWvmyDzX0i45tjsRfkedg,20881
63
+ torchx/schedulers/aws_batch_scheduler.py,sha256=tsQmeqEBLR_Zcm7jWbbZnoZ5TFvo9FHhEt00LgZAnzM,29412
64
+ torchx/schedulers/aws_sagemaker_scheduler.py,sha256=BRa85fqWcPK-B10cYMmm-CbJu0smxOsTXknAbOCfaYA,20880
65
65
  torchx/schedulers/devices.py,sha256=RjVcu22ZRl_9OKtOtmA1A3vNXgu2qD6A9ST0L0Hsg4I,1734
66
66
  torchx/schedulers/docker_scheduler.py,sha256=Kud3AIzQtMekgjlqcg1eNDb8kk29aPbGYOMAvPTZdhM,16840
67
67
  torchx/schedulers/ids.py,sha256=8Qhf1Xqh845mwL-RXnWZXqIILNvml3z8udEXPFpyO7U,2247
68
- torchx/schedulers/kubernetes_mcad_scheduler.py,sha256=FclJEdBdlgtBqKDbgd95oAk5Ya5XNTrwysfX7GS80GY,42896
68
+ torchx/schedulers/kubernetes_mcad_scheduler.py,sha256=G2LZTNMEJRo34osBxMUScYXUG9fYi_Hak78-PH5cJUo,42894
69
69
  torchx/schedulers/kubernetes_scheduler.py,sha256=kYO08hqVlZtNe_FZQP_e8WQk1P8-8SVkXZuY3Zm_Znk,39640
70
- torchx/schedulers/local_scheduler.py,sha256=xGQbI02BNWGF91g00So6hCcYvR90bUAZ7fPzqnm3Ww8,41892
70
+ torchx/schedulers/local_scheduler.py,sha256=Ga5nZ6mxqBa8KcD32UAgZiY7-uhHXnBAIhwNHilhEkw,41891
71
71
  torchx/schedulers/lsf_scheduler.py,sha256=vUvEJb02u7WI6y7DsWJxJFXNylRucU7FqkBX7xwLTak,17638
72
72
  torchx/schedulers/slurm_scheduler.py,sha256=ipDVDtgfqgL6c35NyoJgSPuQFt8-AeXVXAnXJVvmzrc,32032
73
73
  torchx/schedulers/streams.py,sha256=8_SLezgnWgfv_zXUsJCUM34-h2dtv25NmZuxEwkzmxw,2007
74
- torchx/specs/__init__.py,sha256=TaC0AveTebkCMo5hmdY1wGpo09vFDqzWnsT166ionTw,7108
74
+ torchx/specs/__init__.py,sha256=tFvFg0uRwwZgZHiD3hfMDGlEpfu9SIZPWvCohEgqcvQ,7105
75
75
  torchx/specs/api.py,sha256=7FdLFfadNWqXTLJ_EtP5t1uVS2Vc_4Gj5GLFoI628oE,49338
76
76
  torchx/specs/builders.py,sha256=Ye3of4MupJ-da8vLaX6_-nzGo_FRw1BFpYsX6dAZCNk,13730
77
77
  torchx/specs/file_linter.py,sha256=z0c4mKJv47BWiPaWCdUM0A8kHwnj4b1s7oTmESuD9Tc,14407
78
- torchx/specs/finder.py,sha256=gWQNEFrLYqrZoI0gMMhQ70YAC4sxqS0ZFpoWAmcVi44,17438
78
+ torchx/specs/finder.py,sha256=zBSjcywPO-BnYAUwG9EMi0_1UPBfEBNdA3C8WXz8KQU,17437
79
79
  torchx/specs/named_resources_aws.py,sha256=ZNAbw6lD8NUlMfcJ-LpX14dMSaHO7m4Yt9iHwAF44yg,11674
80
80
  torchx/specs/named_resources_generic.py,sha256=Sg4tAdqiiWDrDz2Lj_pnfsjzGIXKTou73wPseh6j55w,2646
81
81
  torchx/specs/overlays.py,sha256=HmY2yzC8ejgihviNWFT4rbYmP-gTcqpxVZTP6qBiIYM,3778
@@ -86,10 +86,10 @@ torchx/specs/test/components/a/b/c.py,sha256=FhixafzNqpS5zvggtWIWLxRd6HIxsOmct-d
86
86
  torchx/specs/test/components/c/__init__.py,sha256=5CBMckkpqJUdxBQBYHGSsItqq1gj2V0UiCw02Qfq6MM,246
87
87
  torchx/specs/test/components/c/d.py,sha256=2AjE-FmQXJTw3hws66O83ToQPmjOEZLDf-jDAKrrUkQ,546
88
88
  torchx/tracker/__init__.py,sha256=qo39aOa0Dz9zt4TtFkqPeIaH7MNqdAkFlGaOFiDLXTI,4375
89
- torchx/tracker/api.py,sha256=WZ7TYdbSVx_5h5MlX9EwQLRpxmIf0oKdiQwQ0zvkO3o,11262
90
- torchx/tracker/mlflow.py,sha256=poeoIXVPzr2sxgi515fMGRH83KAFNL6XFILMh0EQ2Dw,14487
89
+ torchx/tracker/api.py,sha256=4rteINX8ZMv_03t75qOPU-rP3YeIPmm6N1HX9t8lVQg,11263
90
+ torchx/tracker/mlflow.py,sha256=arl70oNw76VNIpf_gEP5p7A7OnDQVIfWZDEyImuM_Gc,14486
91
91
  torchx/tracker/backend/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
92
- torchx/tracker/backend/fsspec.py,sha256=528xKryBE27Rm_OHD7r2R6fmVAclknBtoy1s034Ny6c,10440
92
+ torchx/tracker/backend/fsspec.py,sha256=1lJ1SoaTXl8ajvIJtp9pUmQgTRw7nF5D0Hv3susfYmE,10439
93
93
  torchx/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
94
  torchx/util/cuda.py,sha256=-ZTa1WCLnY2WtSWAdWufLQqZSDCZfZsloBuiS84LIkU,1099
95
95
  torchx/util/datetime.py,sha256=hV6Sg0u5KTBe68yrmy_RGCC5su0i4Tb_mAYphWamiXI,405
@@ -104,10 +104,10 @@ torchx/util/types.py,sha256=E9dxAWQnsJkIDuHtg-poeOJ4etucSI_xP_Z5kNJX8uI,9229
104
104
  torchx/workspace/__init__.py,sha256=FqN8AN4VhR1C_SBY10MggQvNZmyanbbuPuE-JCjkyUY,798
105
105
  torchx/workspace/api.py,sha256=UESQ4qgxXjsb6Y1wP9OGv2ixaFgaTs3SqghmNuOJIZM,10235
106
106
  torchx/workspace/dir_workspace.py,sha256=npNW_IjUZm_yS5r-8hrRkH46ndDd9a_eApT64m1S1T4,2268
107
- torchx/workspace/docker_workspace.py,sha256=PFu2KQNVC-0p2aKJ-W_BKA9ZOmXdCY2ABEkCExp3udQ,10269
108
- torchx_nightly-2026.1.11.dist-info/licenses/LICENSE,sha256=WVHfXhFC0Ia8LTKt_nJVYobdqTJVg_4J3Crrfm2A8KQ,1721
109
- torchx_nightly-2026.1.11.dist-info/METADATA,sha256=VzSwxPN0aaQV3U3gNuMZMvhXiVRwO3W51DLXH1jaEr0,5323
110
- torchx_nightly-2026.1.11.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
111
- torchx_nightly-2026.1.11.dist-info/entry_points.txt,sha256=T328AMXeKI3JZnnxfkEew2ZcMN1oQDtkXjMz7lkV-P4,169
112
- torchx_nightly-2026.1.11.dist-info/top_level.txt,sha256=pxew3bc2gsiViS0zADs0jb6kC5v8o_Yy_85fhHj_J1A,7
113
- torchx_nightly-2026.1.11.dist-info/RECORD,,
107
+ torchx/workspace/docker_workspace.py,sha256=EkiveycTlCYPzrkkoqL2EXNFZSUc3015RgTQY-7a3iU,10268
108
+ torchx_nightly-2026.1.22.dist-info/licenses/LICENSE,sha256=WVHfXhFC0Ia8LTKt_nJVYobdqTJVg_4J3Crrfm2A8KQ,1721
109
+ torchx_nightly-2026.1.22.dist-info/METADATA,sha256=D169Ar4bVrkBHjTLDbenoqIyqBEiqxoDtDc59YXl4N8,5323
110
+ torchx_nightly-2026.1.22.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
111
+ torchx_nightly-2026.1.22.dist-info/entry_points.txt,sha256=T328AMXeKI3JZnnxfkEew2ZcMN1oQDtkXjMz7lkV-P4,169
112
+ torchx_nightly-2026.1.22.dist-info/top_level.txt,sha256=pxew3bc2gsiViS0zADs0jb6kC5v8o_Yy_85fhHj_J1A,7
113
+ torchx_nightly-2026.1.22.dist-info/RECORD,,