polyaxon 2.0.0rc11__py3-none-any.whl → 2.0.0rc12__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/connections/schemas/connections.py +12 -4
- polyaxon/pkg.py +1 -1
- {polyaxon-2.0.0rc11.dist-info → polyaxon-2.0.0rc12.dist-info}/METADATA +4 -4
- {polyaxon-2.0.0rc11.dist-info → polyaxon-2.0.0rc12.dist-info}/RECORD +8 -8
- {polyaxon-2.0.0rc11.dist-info → polyaxon-2.0.0rc12.dist-info}/LICENSE +0 -0
- {polyaxon-2.0.0rc11.dist-info → polyaxon-2.0.0rc12.dist-info}/WHEEL +0 -0
- {polyaxon-2.0.0rc11.dist-info → polyaxon-2.0.0rc12.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.0.0rc11.dist-info → polyaxon-2.0.0rc12.dist-info}/top_level.txt +0 -0
@@ -25,7 +25,9 @@ from polyaxon.schemas.base import BaseSchemaModel
|
|
25
25
|
class V1BucketConnection(BaseSchemaModel):
|
26
26
|
_IDENTIFIER = "bucket"
|
27
27
|
|
28
|
-
kind: Optional[
|
28
|
+
kind: Optional[
|
29
|
+
StrictStr
|
30
|
+
] # TODO: Remove once the kind is not set in the compiler, because the schema is converted to a `dict`
|
29
31
|
bucket: StrictStr
|
30
32
|
|
31
33
|
def patch(self, schema: "V1BucketConnection"): # type: ignore
|
@@ -35,7 +37,9 @@ class V1BucketConnection(BaseSchemaModel):
|
|
35
37
|
class V1ClaimConnection(BaseSchemaModel):
|
36
38
|
_IDENTIFIER = "volume_claim"
|
37
39
|
|
38
|
-
kind: Optional[
|
40
|
+
kind: Optional[
|
41
|
+
StrictStr
|
42
|
+
] # TODO: Remove once the kind is not set in the compiler, because the schema is converted to a `dict`
|
39
43
|
volume_claim: StrictStr = Field(alias="volumeClaim")
|
40
44
|
mount_path: StrictStr = Field(alias="mountPath")
|
41
45
|
read_only: Optional[bool] = Field(alias="readOnly")
|
@@ -62,7 +66,9 @@ class V1HostPathConnection(BaseSchemaModel):
|
|
62
66
|
class V1HostConnection(BaseSchemaModel):
|
63
67
|
_IDENTIFIER = "host"
|
64
68
|
|
65
|
-
kind: Optional[
|
69
|
+
kind: Optional[
|
70
|
+
StrictStr
|
71
|
+
] # TODO: Remove once the kind is not set in the compiler, because the schema is converted to a `dict`
|
66
72
|
url: StrictStr
|
67
73
|
insecure: Optional[bool]
|
68
74
|
|
@@ -74,7 +80,9 @@ class V1HostConnection(BaseSchemaModel):
|
|
74
80
|
class V1GitConnection(BaseSchemaModel):
|
75
81
|
_IDENTIFIER = "git"
|
76
82
|
|
77
|
-
kind: Optional[
|
83
|
+
kind: Optional[
|
84
|
+
StrictStr
|
85
|
+
] # TODO: Remove once the kind is not set in the compiler, because the schema is converted to a `dict`
|
78
86
|
url: Optional[StrictStr]
|
79
87
|
revision: Optional[StrictStr]
|
80
88
|
flags: Optional[List[StrictStr]]
|
polyaxon/pkg.py
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
# limitations under the License.
|
16
16
|
|
17
17
|
NAME = "polyaxon"
|
18
|
-
VERSION = "2.0.0-
|
18
|
+
VERSION = "2.0.0-rc12"
|
19
19
|
SCHEMA_VERSION = 1.1
|
20
20
|
DESC = "Command Line Interface (CLI) and client to interact with Polyaxon API."
|
21
21
|
URL = "https://github.com/polyaxon/polyaxon"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.0rc12
|
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,7 +34,7 @@ Requires-Python: >=3.7
|
|
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.
|
37
|
+
Requires-Dist: clipped (<0.3)
|
38
38
|
Requires-Dist: Jinja2 (<3.1.0,>=2.10.3)
|
39
39
|
Requires-Dist: kubernetes (>=10.0.1)
|
40
40
|
Requires-Dist: python-dateutil (>=2.7.3)
|
@@ -49,8 +49,8 @@ Requires-Dist: sentry-sdk (>=1.2.0)
|
|
49
49
|
Requires-Dist: urllib3 (>=1.25.6)
|
50
50
|
Requires-Dist: certifi (>=2022.12.7)
|
51
51
|
Requires-Dist: pydantic (>=1.10.2)
|
52
|
-
Requires-Dist: traceml (==1.1.
|
53
|
-
Requires-Dist: hypertune (==1.1.
|
52
|
+
Requires-Dist: traceml (==1.1.0rc12)
|
53
|
+
Requires-Dist: hypertune (==1.1.0rc12)
|
54
54
|
Provides-Extra: azure
|
55
55
|
Requires-Dist: adlfs ; extra == 'azure'
|
56
56
|
Provides-Extra: dev
|
@@ -7,7 +7,7 @@ polyaxon/lifecycle.py,sha256=laM6TKzaQsloDTA-nqksgCE3Poqn02r2pQBs8LFRYMs,11534
|
|
7
7
|
polyaxon/live_state.py,sha256=_5Nj8dtHbYeKTCvlHCY3s6TuTB65D0fElNGLx7cjHoA,803
|
8
8
|
polyaxon/logger.py,sha256=wSlDg1uV4XSBoluPPIH-x73i3y271FnVXevO5il7mZw,3340
|
9
9
|
polyaxon/main.py,sha256=1YcGgDXLFfIU-3135cwB4LjWP5s4nRDl9NfWw0x_ux4,6168
|
10
|
-
polyaxon/pkg.py,sha256
|
10
|
+
polyaxon/pkg.py,sha256=-sBSApNclbQ9joQfboYkwpaBwuVkvYxzhlyo9pHY1iM,872
|
11
11
|
polyaxon/settings.py,sha256=WaZhtBtCMBE-uCNa_T3ZtSfC9Oze25WyT9cmPk54iEc,4134
|
12
12
|
polyaxon/types.py,sha256=dfr4Tyt6ZHa6eQZOFVxwG9i5DGEkpKuZr9thiddgSZg,1740
|
13
13
|
polyaxon/agents/__init__.py,sha256=YHxPTwI0Bt6pShF-W3u2j8dgFIoAqNQ-YiByV2iRK94,604
|
@@ -105,7 +105,7 @@ polyaxon/connections/gcp/__init__.py,sha256=YHxPTwI0Bt6pShF-W3u2j8dgFIoAqNQ-YiBy
|
|
105
105
|
polyaxon/connections/gcp/base.py,sha256=Y81AwlL4Tr5hnbu_gpmqU5QDWA1_Hlk4J8xsxqHYvqc,5227
|
106
106
|
polyaxon/connections/gcp/service.py,sha256=J_k7SkILu0IwQkLBYIhdx9v_N00_6zzU0poV1JHkHTE,3396
|
107
107
|
polyaxon/connections/schemas/__init__.py,sha256=fayngaVtuKRq7aToZuytXXzd7MD7P5051lA8UsWTW_Q,913
|
108
|
-
polyaxon/connections/schemas/connections.py,sha256=
|
108
|
+
polyaxon/connections/schemas/connections.py,sha256=pjDPoM4mPrL9Hfah718EZAi62gbi7ci8G402X5CttC4,4499
|
109
109
|
polyaxon/connections/schemas/k8s_resources.py,sha256=fWkDD1twyyO-njZ5oVF_2n97CH7rANX676cBQa7-D8A,1076
|
110
110
|
polyaxon/constants/__init__.py,sha256=YHxPTwI0Bt6pShF-W3u2j8dgFIoAqNQ-YiByV2iRK94,604
|
111
111
|
polyaxon/constants/globals.py,sha256=Hgc8gK6Pl9Qn0PcYdmTYV6_oQg3eZnx38UZBaue-bco,723
|
@@ -604,9 +604,9 @@ polyaxon/utils/fixtures/services.py,sha256=lofgnnPWtjsBwu9VTbobrlAEHxNlZFtj4NwA1
|
|
604
604
|
polyaxon/vendor/__init__.py,sha256=YHxPTwI0Bt6pShF-W3u2j8dgFIoAqNQ-YiByV2iRK94,604
|
605
605
|
polyaxon/vendor/shell_pty.py,sha256=QFQ069zpAS0dHbAgt1h8XCcgY52IJsYHkylnx4ijM2w,6944
|
606
606
|
polyaxon_sdk/__init__.py,sha256=DrNXN1PzVktkbsQqbpe4nBxVaOop0CF3oyKm_S7ix_4,2065
|
607
|
-
polyaxon-2.0.
|
608
|
-
polyaxon-2.0.
|
609
|
-
polyaxon-2.0.
|
610
|
-
polyaxon-2.0.
|
611
|
-
polyaxon-2.0.
|
612
|
-
polyaxon-2.0.
|
607
|
+
polyaxon-2.0.0rc12.dist-info/LICENSE,sha256=86kroZbQUDsmSWOomB7dpceG65UXiVSPob4581tStBc,11349
|
608
|
+
polyaxon-2.0.0rc12.dist-info/METADATA,sha256=QWFMzm3JZPS-ycd6kl4jrAoRQb7njb5MmEHaszoF3tQ,11722
|
609
|
+
polyaxon-2.0.0rc12.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
610
|
+
polyaxon-2.0.0rc12.dist-info/entry_points.txt,sha256=-3Sa1bKqteO912k01BirtAOicBHFsrvDHm1gsF5UKqA,72
|
611
|
+
polyaxon-2.0.0rc12.dist-info/top_level.txt,sha256=I_2e_Vv8rdcqWcMMdZocbrHiKPNGqoSMBqIObrw00Rg,22
|
612
|
+
polyaxon-2.0.0rc12.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|