polyaxon 2.6.0.post1__py3-none-any.whl → 2.6.0rc1__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.
- polyaxon/_deploy/schemas/ui.py +1 -3
- polyaxon/_flow/io/io.py +0 -2
- polyaxon/_flow/params/params.py +1 -1
- polyaxon/_flow/run/resources.py +1 -1
- polyaxon/_polyaxonfile/specs/compiled_operation.py +1 -1
- polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
- polyaxon/_polyaxonfile/specs/operation.py +1 -1
- polyaxon/pkg.py +1 -1
- {polyaxon-2.6.0.post1.dist-info → polyaxon-2.6.0rc1.dist-info}/METADATA +5 -5
- {polyaxon-2.6.0.post1.dist-info → polyaxon-2.6.0rc1.dist-info}/RECORD +14 -14
- {polyaxon-2.6.0.post1.dist-info → polyaxon-2.6.0rc1.dist-info}/LICENSE +0 -0
- {polyaxon-2.6.0.post1.dist-info → polyaxon-2.6.0rc1.dist-info}/WHEEL +0 -0
- {polyaxon-2.6.0.post1.dist-info → polyaxon-2.6.0rc1.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.6.0.post1.dist-info → polyaxon-2.6.0rc1.dist-info}/top_level.txt +0 -0
polyaxon/_deploy/schemas/ui.py
CHANGED
@@ -13,6 +13,4 @@ class UIConfig(BaseSchemaModel):
|
|
13
13
|
assets_version: Optional[StrictStr] = Field(alias="assetsVersion", default=None)
|
14
14
|
admin_enabled: Optional[bool] = Field(alias="adminEnabled", default=None)
|
15
15
|
single_url: Optional[bool] = Field(alias="singleUrl", default=None)
|
16
|
-
default_streams_url: Optional[StrictStr] = Field(
|
17
|
-
alias="defaultStreamsUrl", default=None
|
18
|
-
)
|
16
|
+
default_streams_url: Optional[StrictStr] = Field(alias="defaultStreamsUrl", default=None)
|
polyaxon/_flow/io/io.py
CHANGED
polyaxon/_flow/params/params.py
CHANGED
@@ -386,7 +386,7 @@ class V1Param(BaseSchemaModel, ctx_refs.RefMixin, ParamValueMixin):
|
|
386
386
|
|
387
387
|
_IDENTIFIER = "param"
|
388
388
|
|
389
|
-
value:
|
389
|
+
value: Any
|
390
390
|
ref: Optional[StrictStr] = None
|
391
391
|
context_only: Optional[bool] = Field(alias="contextOnly", default=False)
|
392
392
|
connection: Optional[StrictStr] = None
|
polyaxon/_flow/run/resources.py
CHANGED
@@ -348,7 +348,7 @@ class CompiledOperationSpecification(BaseSpecification):
|
|
348
348
|
"conditions",
|
349
349
|
"skip_on_upstream_skip",
|
350
350
|
}
|
351
|
-
patch_keys = patch_keys.intersection(preset.
|
351
|
+
patch_keys = patch_keys.intersection(preset.__fields_set__)
|
352
352
|
patch_data = {k: getattr(preset, k) for k in patch_keys}
|
353
353
|
patch_compiled = V1CompiledOperation.construct(**patch_data)
|
354
354
|
return config.patch(patch_compiled, strategy=preset.patch_strategy)
|
@@ -11,7 +11,7 @@ def validate(spec, data):
|
|
11
11
|
|
12
12
|
def validate_keys(section, config, section_data):
|
13
13
|
extra_args = [
|
14
|
-
key for key in section_data.keys() if key not in config.
|
14
|
+
key for key in section_data.keys() if key not in config.__fields__.keys()
|
15
15
|
]
|
16
16
|
if extra_args:
|
17
17
|
raise PolyaxonfileError(
|
@@ -107,7 +107,7 @@ class OperationSpecification(BaseSpecification):
|
|
107
107
|
"conditions",
|
108
108
|
"skip_on_upstream_skip",
|
109
109
|
}
|
110
|
-
patch_keys = patch_keys.intersection(config.
|
110
|
+
patch_keys = patch_keys.intersection(config.__fields_set__)
|
111
111
|
patch_data = {k: getattr(config, k) for k in patch_keys}
|
112
112
|
patch_compiled = V1CompiledOperation.construct(contexts=contexts, **patch_data)
|
113
113
|
|
polyaxon/pkg.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.6.
|
3
|
+
Version: 2.6.0rc1
|
4
4
|
Summary: Command Line Interface (CLI) and client to interact with Polyaxon API.
|
5
5
|
Home-page: https://github.com/polyaxon/polyaxon
|
6
6
|
Author: Polyaxon, Inc.
|
@@ -34,8 +34,8 @@ Requires-Python: >=3.8
|
|
34
34
|
Description-Content-Type: text/markdown
|
35
35
|
License-File: LICENSE
|
36
36
|
Requires-Dist: click<9.0.0,>=7.1.1
|
37
|
-
Requires-Dist: clipped==0.9
|
38
|
-
Requires-Dist: vents==0.5
|
37
|
+
Requires-Dist: clipped==0.9.0rc6
|
38
|
+
Requires-Dist: vents==0.5.0rc7
|
39
39
|
Requires-Dist: Jinja2<3.1.5,>=2.10.3
|
40
40
|
Requires-Dist: kubernetes>=10.0.1
|
41
41
|
Requires-Dist: python-dateutil>=2.7.3
|
@@ -50,8 +50,8 @@ Requires-Dist: sentry-sdk<2.6,>=1.2.0
|
|
50
50
|
Requires-Dist: urllib3>=1.25.6
|
51
51
|
Requires-Dist: certifi>=2022.12.7
|
52
52
|
Requires-Dist: pydantic>=1.10.2
|
53
|
-
Requires-Dist: traceml==1.2
|
54
|
-
Requires-Dist: hypertune==1.2
|
53
|
+
Requires-Dist: traceml==1.2.0rc0
|
54
|
+
Requires-Dist: hypertune==1.2.0rc0
|
55
55
|
Provides-Extra: azure
|
56
56
|
Requires-Dist: adlfs; extra == "azure"
|
57
57
|
Provides-Extra: dev
|
@@ -9,7 +9,7 @@ polyaxon/exceptions.py,sha256=ujvG9p1Pn2KHYbHqB3-faadW46dEuULUQXNtfkd2zk8,10236
|
|
9
9
|
polyaxon/fs.py,sha256=RS8XmVrrfXfIJXN6cTCCRRYwesCLHVVfC01Vi56lecs,246
|
10
10
|
polyaxon/k8s.py,sha256=nI5oPCSlqU4aaeVShM6SlYS9eqYiYUL4GDXIZ4bnq-I,1051
|
11
11
|
polyaxon/logger.py,sha256=gdZQms37Pe5G2j-Ear5jbSAJeGgX6fnvg7oE8_9MSlc,2309
|
12
|
-
polyaxon/pkg.py,sha256=
|
12
|
+
polyaxon/pkg.py,sha256=DuH38uyrhQcMRDLrddDgKO1y1rXnhNb3v91-cp9Rx0s,266
|
13
13
|
polyaxon/polyaxonfile.py,sha256=xHmHT_cHomfuAQm82Jhnp71YNN5mQ-Lod7EbonjY4b4,429
|
14
14
|
polyaxon/schemas.py,sha256=-CykY3emoAUCs_zRNbjwkuMkqbaEDjfKsZC86rI8154,5870
|
15
15
|
polyaxon/settings.py,sha256=Pxx1-T2oeJ5XmvGFN0YgnVzum_9FyTPaQtl68aQvYc4,4116
|
@@ -144,7 +144,7 @@ polyaxon/_deploy/schemas/security_context.py,sha256=Xv1NHDhNn6TDXi42ucWCRxP6hKIE
|
|
144
144
|
polyaxon/_deploy/schemas/service.py,sha256=itZtFMNP9drT8ChpVNEz3I8IYMUK-T5jF3DxAcLRX-Y,4636
|
145
145
|
polyaxon/_deploy/schemas/service_types.py,sha256=Vxhc9mCQ1mgDeDifY3HL6ngbbchLMBjOZVBii4a3xA0,163
|
146
146
|
polyaxon/_deploy/schemas/ssl.py,sha256=P-jquFDHZw3PMUeYO3UpacC46w_d7L_lC9eNJi-OoBQ,322
|
147
|
-
polyaxon/_deploy/schemas/ui.py,sha256=
|
147
|
+
polyaxon/_deploy/schemas/ui.py,sha256=MhCyHzLC_HwbB3O0hSxcCGELnsW4SvbUDLmA_qp7tjc,719
|
148
148
|
polyaxon/_docker/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
149
149
|
polyaxon/_docker/agent.py,sha256=2N_CKX8PQAGnHc-ub7nq6nBHzlTrm4FP_Ycbgm-ouXQ,161
|
150
150
|
polyaxon/_docker/docker_types.py,sha256=DaVwn7239W8gBQq3tPFzLO0QYpYj8Yous7qTK2rzx5A,3868
|
@@ -196,7 +196,7 @@ polyaxon/_flow/events/enums.py,sha256=CWnnwo3MFu9Pz7qTld11REcuD-lXHTQ8PkQpJFN64G
|
|
196
196
|
polyaxon/_flow/hooks/__init__.py,sha256=i0IPbaEhmmPCj2a4rpoh6JtfoBIgn0-y_HOdfV7Nf0U,7097
|
197
197
|
polyaxon/_flow/init/__init__.py,sha256=TYEMMWYKAht4xtjYcdqLN-SUmHJ68j1m5D9_7Sl2JKk,11328
|
198
198
|
polyaxon/_flow/io/__init__.py,sha256=Qcqmru-weHKeEBM9ZGmZ0TCAcuya0m0pgMs6R_AGwxE,52
|
199
|
-
polyaxon/_flow/io/io.py,sha256=
|
199
|
+
polyaxon/_flow/io/io.py,sha256=I73RDg3zsSlVtDpjO8jEZLv0DjCohtPn8RLWken9EAo,30056
|
200
200
|
polyaxon/_flow/joins/__init__.py,sha256=zs1-4_8ZCMmpRQlRuG1tMJb0pkmJVb1KjITkhyGjwYg,6335
|
201
201
|
polyaxon/_flow/matrix/__init__.py,sha256=-uJFOSwUhnZjto1MFNEZnCRRW8b3iMrMFs37COmT1g0,2227
|
202
202
|
polyaxon/_flow/matrix/base.py,sha256=mt5chZIuJxCz-Xw5i3H8lPVRR3seJ9zbXmkszzMnynE,264
|
@@ -221,7 +221,7 @@ polyaxon/_flow/optimization/__init__.py,sha256=rcZDAiPvp7ArWN9GBAUIBikRDuKQQz5x7
|
|
221
221
|
polyaxon/_flow/optimization/enums.py,sha256=Uc2bP8cyvuf7lDmNqsk9bweB8Rr2QChXyKtaxgnRLpY,1135
|
222
222
|
polyaxon/_flow/params/__init__.py,sha256=G_dCHuJZjRAkI83vDLykZE5_xeUjjEKaDL9QWVxCZ6E,60
|
223
223
|
polyaxon/_flow/params/ops_params.py,sha256=x1HJQ_JJUUJtDf3O-o12UTA9nOHolEUO8EksrQ3aLsQ,11902
|
224
|
-
polyaxon/_flow/params/params.py,sha256=
|
224
|
+
polyaxon/_flow/params/params.py,sha256=gUUWxk4zOTZsjpEKrFhufVHLKcXwt0-goAwdwNaRmDk,18594
|
225
225
|
polyaxon/_flow/plugins/__init__.py,sha256=clHXFpJLdPhhewizJGfrUT6Vz_OlnW6Lvm-hSE1_TTY,11560
|
226
226
|
polyaxon/_flow/references/__init__.py,sha256=cwBJc9AGvj268w3sjbZjmwJf5xVgIXtXUSPJs_RR8Yk,259
|
227
227
|
polyaxon/_flow/references/dag.py,sha256=koKv8wYIQshEphhyrr-zxEMtd2jOLVSLLa9Zwm3-16A,416
|
@@ -237,7 +237,7 @@ polyaxon/_flow/run/enums.py,sha256=3aQBm86UKCdc9WQVIDGPg_Zp3I_j7udxCEQXrwFAsmc,1
|
|
237
237
|
polyaxon/_flow/run/job.py,sha256=wpSj2Z6Ca4_19omGTHD82DTpRh8_B5C6fGl1IGmdV4Y,7755
|
238
238
|
polyaxon/_flow/run/notifier.py,sha256=AYH0h6hUa7yvPyHqLjNN4Gxpxg2XZtpJVukJHjfNUGU,240
|
239
239
|
polyaxon/_flow/run/patch.py,sha256=GYXYsBFvqnVndEr6uer4nxlmmlmvKkgfmRXqv-JYKfw,3181
|
240
|
-
polyaxon/_flow/run/resources.py,sha256=
|
240
|
+
polyaxon/_flow/run/resources.py,sha256=DpjGrTNXNR1Ap8sLnIzHiDU30vEaPMdAjoXKV_ir2y4,3190
|
241
241
|
polyaxon/_flow/run/service.py,sha256=0AV6xoHygKp07jQzC4R50ZeXMu23oYTdImMBc3EJNI8,7917
|
242
242
|
polyaxon/_flow/run/tuner.py,sha256=N9nPXVRKysHWzd8AflC1vd5vw2Ag9RUlVcvB1PH9MZk,234
|
243
243
|
polyaxon/_flow/run/utils.py,sha256=K2G0G2W1JeKSdI3hliGL2opW-rUkvpy0LOD7PjmQVgY,226
|
@@ -394,15 +394,15 @@ polyaxon/_polyaxonfile/manager/operations.py,sha256=hXOJI2xW0GQ5IizNyTjfa734PYwv
|
|
394
394
|
polyaxon/_polyaxonfile/manager/workflows.py,sha256=-0lbR8GraaIYeJRbpE4OiBoWWP60l-M2_sdDhrlC_WE,2251
|
395
395
|
polyaxon/_polyaxonfile/specs/__init__.py,sha256=7uTiuoYaeZAplvNfSkv3pGw9bn3GCqJe67ezChQPi6o,861
|
396
396
|
polyaxon/_polyaxonfile/specs/base.py,sha256=y4PC2Ig0v8xENo2j4X96Qke4f1PzPqinwDeOfq8rayQ,4109
|
397
|
-
polyaxon/_polyaxonfile/specs/compiled_operation.py,sha256=
|
397
|
+
polyaxon/_polyaxonfile/specs/compiled_operation.py,sha256=9F_4iajgjf8lR3gVC08tT-OkKxpnzvmqj-7HW1zPX-Y,34233
|
398
398
|
polyaxon/_polyaxonfile/specs/component.py,sha256=EU7KndS18mTVUmsYdiKpNaVnjzn6DAOl1qfw4GKayyU,361
|
399
399
|
polyaxon/_polyaxonfile/specs/kinds.py,sha256=_5XqP-K6PACWjwL8Ak43fgMbcJAQAhIHQNRAJsNghvE,141
|
400
|
-
polyaxon/_polyaxonfile/specs/operation.py,sha256=
|
400
|
+
polyaxon/_polyaxonfile/specs/operation.py,sha256=JIV1o-4o2AeqUAXnWq1AXuxeezQC-NA2EW2sacw8oYs,4443
|
401
401
|
polyaxon/_polyaxonfile/specs/sections.py,sha256=f0nVkG42eb4CdChIWj51QToJuQWiQ09neUIpT-Y2Y30,2417
|
402
402
|
polyaxon/_polyaxonfile/specs/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
403
403
|
polyaxon/_polyaxonfile/specs/libs/engine.py,sha256=4wR-LbX5BehTPCnF1oHGPgqNZn6LztuFcs7_wm0OqpY,373
|
404
404
|
polyaxon/_polyaxonfile/specs/libs/parser.py,sha256=2M9QU0hFoQMmXnBl82vNQNyvvTNr1kUjyAmKDbWznJQ,10416
|
405
|
-
polyaxon/_polyaxonfile/specs/libs/validator.py,sha256=
|
405
|
+
polyaxon/_polyaxonfile/specs/libs/validator.py,sha256=NZavIn-D43tbChRQz33JW2EuJPWZ5R8brCxCxGFYO68,938
|
406
406
|
polyaxon/_pql/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
407
407
|
polyaxon/_pql/builder.py,sha256=OhQPLJ4pCOgkviY6HcHqji-Q1taZNeSMUjVfgkwCWho,17840
|
408
408
|
polyaxon/_pql/manager.py,sha256=GkAgPqG3-IynFvYb7Ho56ISaTGvwLdWaA8VbP5Gl2oU,5748
|
@@ -611,9 +611,9 @@ polyaxon/tuners/hyperopt.py,sha256=zd6MblMGkooqLGDFJVo5kClqYnBoMwGj-opqqj8FDzQ,7
|
|
611
611
|
polyaxon/tuners/mapping.py,sha256=pOdHCiwEufTk-QT7pNyjBjAEWNTM-lMC17WNTCk7C24,69
|
612
612
|
polyaxon/tuners/random_search.py,sha256=6VEekM3N9h6E1lbpVTTUGKFPJlGMY2u-GkG615_nQcI,80
|
613
613
|
polyaxon_sdk/__init__.py,sha256=HWvFdGWESyVG3f26K_szewiG-McMOHFkXKTfZcBlHsM,92
|
614
|
-
polyaxon-2.6.
|
615
|
-
polyaxon-2.6.
|
616
|
-
polyaxon-2.6.
|
617
|
-
polyaxon-2.6.
|
618
|
-
polyaxon-2.6.
|
619
|
-
polyaxon-2.6.
|
614
|
+
polyaxon-2.6.0rc1.dist-info/LICENSE,sha256=86kroZbQUDsmSWOomB7dpceG65UXiVSPob4581tStBc,11349
|
615
|
+
polyaxon-2.6.0rc1.dist-info/METADATA,sha256=1bnHYWZtA4VK3ztKVq3ybMQDwVQcjq-xylyMasyEDmY,11677
|
616
|
+
polyaxon-2.6.0rc1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
617
|
+
polyaxon-2.6.0rc1.dist-info/entry_points.txt,sha256=aFbUMjkg9vzRBVAFhqvR1m92yG8Cov7UAF0zViGfoQw,70
|
618
|
+
polyaxon-2.6.0rc1.dist-info/top_level.txt,sha256=I_2e_Vv8rdcqWcMMdZocbrHiKPNGqoSMBqIObrw00Rg,22
|
619
|
+
polyaxon-2.6.0rc1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|