polyaxon 2.3.1__py3-none-any.whl → 2.3.2__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/_fs/fs.py +1 -1
- polyaxon/pkg.py +1 -1
- {polyaxon-2.3.1.dist-info → polyaxon-2.3.2.dist-info}/METADATA +43 -43
- {polyaxon-2.3.1.dist-info → polyaxon-2.3.2.dist-info}/RECORD +8 -8
- {polyaxon-2.3.1.dist-info → polyaxon-2.3.2.dist-info}/WHEEL +1 -1
- {polyaxon-2.3.1.dist-info → polyaxon-2.3.2.dist-info}/LICENSE +0 -0
- {polyaxon-2.3.1.dist-info → polyaxon-2.3.2.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.3.1.dist-info → polyaxon-2.3.2.dist-info}/top_level.txt +0 -0
polyaxon/_fs/fs.py
CHANGED
@@ -56,7 +56,7 @@ def _get_fs_from_connection(
|
|
56
56
|
|
57
57
|
async def get_async_fs_from_connection(connection: Optional[V1Connection], **kwargs):
|
58
58
|
fs = _get_fs_from_connection(connection=connection, asynchronous=True, **kwargs)
|
59
|
-
if fs
|
59
|
+
if hasattr(fs, "async_impl") and hasattr(fs, "set_session"):
|
60
60
|
await fs.set_session()
|
61
61
|
return fs
|
62
62
|
|
polyaxon/pkg.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.3.
|
3
|
+
Version: 2.3.2
|
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.
|
@@ -33,67 +33,67 @@ Classifier: Programming Language :: Python :: 3.11
|
|
33
33
|
Requires-Python: >=3.8
|
34
34
|
Description-Content-Type: text/markdown
|
35
35
|
License-File: LICENSE
|
36
|
-
Requires-Dist: click
|
37
|
-
Requires-Dist: clipped
|
38
|
-
Requires-Dist: vents
|
39
|
-
Requires-Dist: Jinja2
|
40
|
-
Requires-Dist: kubernetes
|
41
|
-
Requires-Dist: python-dateutil
|
42
|
-
Requires-Dist: pytz
|
43
|
-
Requires-Dist: PyYAML
|
44
|
-
Requires-Dist: orjson
|
45
|
-
Requires-Dist: psutil
|
46
|
-
Requires-Dist: requests
|
47
|
-
Requires-Dist: requests-toolbelt
|
48
|
-
Requires-Dist: rich
|
49
|
-
Requires-Dist: sentry-sdk
|
50
|
-
Requires-Dist: urllib3
|
51
|
-
Requires-Dist: certifi
|
52
|
-
Requires-Dist: pydantic
|
53
|
-
Requires-Dist: traceml
|
54
|
-
Requires-Dist: hypertune
|
36
|
+
Requires-Dist: click<9.0.0,>=7.1.1
|
37
|
+
Requires-Dist: clipped==0.7.*
|
38
|
+
Requires-Dist: vents==0.4.*
|
39
|
+
Requires-Dist: Jinja2<3.1.5,>=2.10.3
|
40
|
+
Requires-Dist: kubernetes>=10.0.1
|
41
|
+
Requires-Dist: python-dateutil>=2.7.3
|
42
|
+
Requires-Dist: pytz>=2019.2
|
43
|
+
Requires-Dist: PyYAML>=5.1
|
44
|
+
Requires-Dist: orjson>=3.7
|
45
|
+
Requires-Dist: psutil>=5.4.7
|
46
|
+
Requires-Dist: requests>=2.20.1
|
47
|
+
Requires-Dist: requests-toolbelt>=0.8.0
|
48
|
+
Requires-Dist: rich>=12.0.0
|
49
|
+
Requires-Dist: sentry-sdk<2.6,>=1.2.0
|
50
|
+
Requires-Dist: urllib3>=1.25.6
|
51
|
+
Requires-Dist: certifi>=2022.12.7
|
52
|
+
Requires-Dist: pydantic>=1.10.2
|
53
|
+
Requires-Dist: traceml==1.1.*
|
54
|
+
Requires-Dist: hypertune==1.1.*
|
55
55
|
Provides-Extra: azure
|
56
|
-
Requires-Dist: adlfs
|
56
|
+
Requires-Dist: adlfs; extra == "azure"
|
57
57
|
Provides-Extra: dev
|
58
|
-
Requires-Dist: moto
|
58
|
+
Requires-Dist: moto==2.0.5; extra == "dev"
|
59
59
|
Provides-Extra: docker
|
60
|
-
Requires-Dist: docker
|
60
|
+
Requires-Dist: docker; extra == "docker"
|
61
61
|
Provides-Extra: fs
|
62
|
-
Requires-Dist: adlfs
|
63
|
-
Requires-Dist: fsspec
|
64
|
-
Requires-Dist: gcsfs
|
65
|
-
Requires-Dist: s3fs
|
62
|
+
Requires-Dist: adlfs==2024.4.1; extra == "fs"
|
63
|
+
Requires-Dist: fsspec==2024.6.1; extra == "fs"
|
64
|
+
Requires-Dist: gcsfs==2024.6.1; extra == "fs"
|
65
|
+
Requires-Dist: s3fs==2024.6.1; extra == "fs"
|
66
66
|
Provides-Extra: fsspec
|
67
|
-
Requires-Dist: fsspec
|
67
|
+
Requires-Dist: fsspec; extra == "fsspec"
|
68
68
|
Provides-Extra: gcs
|
69
|
-
Requires-Dist: gcsfs
|
69
|
+
Requires-Dist: gcsfs; extra == "gcs"
|
70
70
|
Provides-Extra: git
|
71
|
-
Requires-Dist: gitpython
|
71
|
+
Requires-Dist: gitpython; extra == "git"
|
72
72
|
Provides-Extra: init
|
73
|
-
Requires-Dist: docker
|
74
|
-
Requires-Dist: GitPython
|
75
|
-
Requires-Dist: aiofiles
|
73
|
+
Requires-Dist: docker; extra == "init"
|
74
|
+
Requires-Dist: GitPython<3.2.0; extra == "init"
|
75
|
+
Requires-Dist: aiofiles==23.2.1; extra == "init"
|
76
76
|
Provides-Extra: k8s_async
|
77
|
-
Requires-Dist: kubernetes-asyncio
|
78
|
-
Requires-Dist: aiohttp
|
79
|
-
Requires-Dist: anyio
|
77
|
+
Requires-Dist: kubernetes-asyncio>=28.2.1; extra == "k8s-async"
|
78
|
+
Requires-Dist: aiohttp>=3.0.0; extra == "k8s-async"
|
79
|
+
Requires-Dist: anyio; extra == "k8s-async"
|
80
80
|
Provides-Extra: numpy
|
81
|
-
Requires-Dist: numpy
|
81
|
+
Requires-Dist: numpy; extra == "numpy"
|
82
82
|
Provides-Extra: s3
|
83
|
-
Requires-Dist: s3fs
|
83
|
+
Requires-Dist: s3fs; extra == "s3"
|
84
84
|
Provides-Extra: sandbox
|
85
|
-
Requires-Dist: haupt[sandbox]
|
85
|
+
Requires-Dist: haupt[sandbox]; extra == "sandbox"
|
86
86
|
Provides-Extra: sidecar
|
87
|
-
Requires-Dist: aiofiles
|
88
|
-
Requires-Dist: pandas
|
89
|
-
Requires-Dist: anyio
|
87
|
+
Requires-Dist: aiofiles==23.2.1; extra == "sidecar"
|
88
|
+
Requires-Dist: pandas; extra == "sidecar"
|
89
|
+
Requires-Dist: anyio; extra == "sidecar"
|
90
90
|
|
91
91
|
[](LICENSE)
|
92
92
|
[](https://hub.docker.com/r/polyaxon/polyaxon-api)
|
93
93
|
[](https://polyaxon.com/slack/)
|
94
94
|
|
95
95
|
[](https://polyaxon.com/docs/)
|
96
|
-
[](https://polyaxon.com/docs/releases/2-1/)
|
97
97
|
[](https://github.com/polyaxon/polyaxon/issues)
|
98
98
|
[](https://github.com/orgs/polyaxon/projects/5)
|
99
99
|
|
@@ -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=sen3fNYvFC-pG04x6ZbM-GBGm2s09lJ3YAlFLcngtBc,262
|
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
|
@@ -266,7 +266,7 @@ polyaxon/_flow/templates/__init__.py,sha256=48uuXIvy3G10V2o5oWw9oztNIZt5yIAXcWjV
|
|
266
266
|
polyaxon/_flow/termination/__init__.py,sha256=MLO-LxCNSEDJDYQihjh8_uTIxs6w2y-MNcLPau7nugY,3496
|
267
267
|
polyaxon/_fs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
268
268
|
polyaxon/_fs/async_manager.py,sha256=XMG2uIwRReN9ppzCp2X2V9tzt_wBuKiQ8gbEyb5TaJA,10754
|
269
|
-
polyaxon/_fs/fs.py,sha256=
|
269
|
+
polyaxon/_fs/fs.py,sha256=LXVmpOGAYayl5RZVrrE8nf3w7ILEJ4SSUtx621DKGYE,3412
|
270
270
|
polyaxon/_fs/manager.py,sha256=DjhGHRHEUd7Oj-pS4uhfYxCpJJAwP7tt5Xu0KWZqDik,991
|
271
271
|
polyaxon/_fs/tar.py,sha256=1Gk9HwhdwPlG7r2ZuXuaPAMu4q_eYqPe9MSQibYuf_E,891
|
272
272
|
polyaxon/_fs/types.py,sha256=L-UoHCsYXyOMFAkLXE1yMC1Eos10diZOFCzV7QAAA4g,159
|
@@ -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.3.
|
615
|
-
polyaxon-2.3.
|
616
|
-
polyaxon-2.3.
|
617
|
-
polyaxon-2.3.
|
618
|
-
polyaxon-2.3.
|
619
|
-
polyaxon-2.3.
|
614
|
+
polyaxon-2.3.2.dist-info/LICENSE,sha256=86kroZbQUDsmSWOomB7dpceG65UXiVSPob4581tStBc,11349
|
615
|
+
polyaxon-2.3.2.dist-info/METADATA,sha256=xV9X4tVtLbJtU8ahwJzzRo1O0cxsrUvesCerACTMfV4,11657
|
616
|
+
polyaxon-2.3.2.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
617
|
+
polyaxon-2.3.2.dist-info/entry_points.txt,sha256=aFbUMjkg9vzRBVAFhqvR1m92yG8Cov7UAF0zViGfoQw,70
|
618
|
+
polyaxon-2.3.2.dist-info/top_level.txt,sha256=I_2e_Vv8rdcqWcMMdZocbrHiKPNGqoSMBqIObrw00Rg,22
|
619
|
+
polyaxon-2.3.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|