polyaxon 2.6.0rc1__py3-none-any.whl → 2.7.0rc0__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.
Files changed (103) hide show
  1. polyaxon/_cli/operations.py +1 -1
  2. polyaxon/_cli/projects.py +2 -2
  3. polyaxon/_compiler/contexts/contexts.py +5 -5
  4. polyaxon/_compiler/contexts/dask_job.py +1 -1
  5. polyaxon/_compiler/contexts/kubeflow/mpi_job.py +1 -1
  6. polyaxon/_compiler/contexts/kubeflow/mx_job.py +1 -1
  7. polyaxon/_compiler/contexts/kubeflow/paddle_job.py +1 -1
  8. polyaxon/_compiler/contexts/kubeflow/pytroch_job.py +1 -1
  9. polyaxon/_compiler/contexts/kubeflow/tf_job.py +1 -1
  10. polyaxon/_compiler/contexts/kubeflow/xgb_job.py +1 -1
  11. polyaxon/_compiler/contexts/ray_job.py +1 -1
  12. polyaxon/_compiler/resolver/agent.py +1 -1
  13. polyaxon/_compiler/resolver/runtime.py +1 -1
  14. polyaxon/_deploy/schemas/deployment.py +1 -0
  15. polyaxon/_deploy/schemas/ui.py +3 -1
  16. polyaxon/_docker/converter/base/base.py +1 -1
  17. polyaxon/_docker/converter/base/env_vars.py +1 -1
  18. polyaxon/_docker/converter/converters/job.py +1 -1
  19. polyaxon/_docker/converter/converters/service.py +1 -1
  20. polyaxon/_flow/component/component.py +4 -0
  21. polyaxon/_flow/environment/__init__.py +5 -4
  22. polyaxon/_flow/io/io.py +2 -0
  23. polyaxon/_flow/matrix/params.py +1 -1
  24. polyaxon/_flow/operations/compiled_operation.py +4 -0
  25. polyaxon/_flow/operations/operation.py +5 -3
  26. polyaxon/_flow/params/params.py +2 -2
  27. polyaxon/_flow/run/__init__.py +3 -0
  28. polyaxon/_flow/run/dag.py +6 -6
  29. polyaxon/_flow/run/dask/dask.py +10 -0
  30. polyaxon/_flow/run/kubeflow/mpi_job.py +8 -0
  31. polyaxon/_flow/run/kubeflow/mx_job.py +16 -0
  32. polyaxon/_flow/run/kubeflow/paddle_job.py +8 -0
  33. polyaxon/_flow/run/kubeflow/pytorch_job.py +8 -0
  34. polyaxon/_flow/run/kubeflow/tf_job.py +12 -0
  35. polyaxon/_flow/run/kubeflow/xgboost_job.py +19 -33
  36. polyaxon/_flow/run/patch.py +37 -9
  37. polyaxon/_flow/run/ray/ray.py +9 -0
  38. polyaxon/_flow/run/resources.py +1 -1
  39. polyaxon/_fs/fs.py +1 -1
  40. polyaxon/_k8s/converter/base/containers.py +1 -1
  41. polyaxon/_k8s/converter/converters/dask_job.py +1 -1
  42. polyaxon/_k8s/converter/converters/job.py +1 -1
  43. polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py +1 -1
  44. polyaxon/_k8s/converter/converters/kubeflow/mx_job.py +1 -1
  45. polyaxon/_k8s/converter/converters/kubeflow/paddle_job.py +1 -1
  46. polyaxon/_k8s/converter/converters/kubeflow/pytroch_job.py +1 -1
  47. polyaxon/_k8s/converter/converters/kubeflow/tf_job.py +1 -1
  48. polyaxon/_k8s/converter/converters/kubeflow/xgboost_job.py +1 -1
  49. polyaxon/_k8s/converter/converters/ray_job.py +1 -2
  50. polyaxon/_k8s/converter/converters/service.py +1 -1
  51. polyaxon/_k8s/k8s_validation.py +16 -16
  52. polyaxon/_k8s/logging/async_monitor.py +4 -4
  53. polyaxon/_k8s/manager/async_manager.py +5 -3
  54. polyaxon/_k8s/manager/manager.py +6 -6
  55. polyaxon/_local_process/converter/base/env_vars.py +1 -1
  56. polyaxon/_local_process/converter/base/init.py +1 -1
  57. polyaxon/_local_process/converter/base/mounts.py +0 -2
  58. polyaxon/_local_process/converter/converters/job.py +1 -1
  59. polyaxon/_local_process/converter/converters/service.py +1 -1
  60. polyaxon/_managers/project.py +3 -2
  61. polyaxon/_polyaxonfile/check.py +4 -4
  62. polyaxon/_polyaxonfile/specs/compiled_operation.py +8 -6
  63. polyaxon/_polyaxonfile/specs/libs/parser.py +1 -3
  64. polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
  65. polyaxon/_polyaxonfile/specs/operation.py +7 -3
  66. polyaxon/_pql/manager.py +1 -1
  67. polyaxon/_pql/parser.py +29 -26
  68. polyaxon/_runner/agent/base_agent.py +1 -2
  69. polyaxon/_runner/converter/init/artifacts.py +3 -2
  70. polyaxon/_runner/converter/init/tensorboard.py +1 -1
  71. polyaxon/_schemas/client.py +1 -1
  72. polyaxon/_sdk/api/agents_v1_api.py +56 -80
  73. polyaxon/_sdk/api/artifacts_stores_v1_api.py +2 -2
  74. polyaxon/_sdk/api/auth_v1_api.py +2 -6
  75. polyaxon/_sdk/api/connections_v1_api.py +16 -20
  76. polyaxon/_sdk/api/dashboards_v1_api.py +14 -14
  77. polyaxon/_sdk/api/organizations_v1_api.py +1735 -755
  78. polyaxon/_sdk/api/presets_v1_api.py +18 -26
  79. polyaxon/_sdk/api/project_dashboards_v1_api.py +17 -19
  80. polyaxon/_sdk/api/project_searches_v1_api.py +20 -28
  81. polyaxon/_sdk/api/projects_v1_api.py +74 -92
  82. polyaxon/_sdk/api/queues_v1_api.py +22 -30
  83. polyaxon/_sdk/api/runs_v1_api.py +157 -207
  84. polyaxon/_sdk/api/searches_v1_api.py +16 -20
  85. polyaxon/_sdk/api/service_accounts_v1_api.py +30 -38
  86. polyaxon/_sdk/api/tags_v1_api.py +19 -25
  87. polyaxon/_sdk/api/teams_v1_api.py +64 -90
  88. polyaxon/_sdk/api/users_v1_api.py +17 -19
  89. polyaxon/_sdk/api/versions_v1_api.py +4 -4
  90. polyaxon/_sdk/async_client/rest.py +1 -3
  91. polyaxon/_sdk/schemas/v1_organization.py +3 -2
  92. polyaxon/_sdk/schemas/v1_project_settings.py +2 -1
  93. polyaxon/_sdk/schemas/v1_section_spec.py +1 -1
  94. polyaxon/_sdk/schemas/v1_user_access.py +3 -2
  95. polyaxon/_sdk/sync_client/api_client.py +2 -6
  96. polyaxon/_sdk/sync_client/rest.py +4 -8
  97. polyaxon/pkg.py +1 -1
  98. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/METADATA +9 -9
  99. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/RECORD +103 -103
  100. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/LICENSE +0 -0
  101. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/WHEEL +0 -0
  102. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/entry_points.txt +0 -0
  103. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/top_level.txt +0 -0
@@ -170,7 +170,7 @@ class UsersV1Api(BaseApi):
170
170
  def delete_token(
171
171
  self,
172
172
  uuid: Annotated[StrictStr, Field(..., description="UUid of the namespace")],
173
- **kwargs
173
+ **kwargs,
174
174
  ) -> None: # noqa: E501
175
175
  """Delete token # noqa: E501
176
176
 
@@ -204,7 +204,7 @@ class UsersV1Api(BaseApi):
204
204
  def delete_token_with_http_info(
205
205
  self,
206
206
  uuid: Annotated[StrictStr, Field(..., description="UUid of the namespace")],
207
- **kwargs
207
+ **kwargs,
208
208
  ): # noqa: E501
209
209
  """Delete token # noqa: E501
210
210
 
@@ -324,7 +324,7 @@ class UsersV1Api(BaseApi):
324
324
  Optional[StrictStr], Field(description="Query filter the search.")
325
325
  ] = None,
326
326
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
327
- **kwargs
327
+ **kwargs,
328
328
  ) -> V1ListActivitiesResponse: # noqa: E501
329
329
  """User History # noqa: E501
330
330
 
@@ -378,7 +378,7 @@ class UsersV1Api(BaseApi):
378
378
  Optional[StrictStr], Field(description="Query filter the search.")
379
379
  ] = None,
380
380
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
381
- **kwargs
381
+ **kwargs,
382
382
  ): # noqa: E501
383
383
  """User History # noqa: E501
384
384
 
@@ -524,7 +524,7 @@ class UsersV1Api(BaseApi):
524
524
  Optional[StrictStr], Field(description="Query filter the search.")
525
525
  ] = None,
526
526
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
527
- **kwargs
527
+ **kwargs,
528
528
  ) -> object: # noqa: E501
529
529
  """User suggestions # noqa: E501
530
530
 
@@ -578,7 +578,7 @@ class UsersV1Api(BaseApi):
578
578
  Optional[StrictStr], Field(description="Query filter the search.")
579
579
  ] = None,
580
580
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
581
- **kwargs
581
+ **kwargs,
582
582
  ): # noqa: E501
583
583
  """User suggestions # noqa: E501
584
584
 
@@ -714,7 +714,7 @@ class UsersV1Api(BaseApi):
714
714
  def get_token(
715
715
  self,
716
716
  uuid: Annotated[StrictStr, Field(..., description="UUid of the namespace")],
717
- **kwargs
717
+ **kwargs,
718
718
  ) -> V1Token: # noqa: E501
719
719
  """Get token # noqa: E501
720
720
 
@@ -748,7 +748,7 @@ class UsersV1Api(BaseApi):
748
748
  def get_token_with_http_info(
749
749
  self,
750
750
  uuid: Annotated[StrictStr, Field(..., description="UUid of the namespace")],
751
- **kwargs
751
+ **kwargs,
752
752
  ): # noqa: E501
753
753
  """Get token # noqa: E501
754
754
 
@@ -1008,7 +1008,7 @@ class UsersV1Api(BaseApi):
1008
1008
  Optional[StrictStr], Field(description="Query filter the search.")
1009
1009
  ] = None,
1010
1010
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
1011
- **kwargs
1011
+ **kwargs,
1012
1012
  ) -> object: # noqa: E501
1013
1013
  """User workspaces # noqa: E501
1014
1014
 
@@ -1062,7 +1062,7 @@ class UsersV1Api(BaseApi):
1062
1062
  Optional[StrictStr], Field(description="Query filter the search.")
1063
1063
  ] = None,
1064
1064
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
1065
- **kwargs
1065
+ **kwargs,
1066
1066
  ): # noqa: E501
1067
1067
  """User workspaces # noqa: E501
1068
1068
 
@@ -1208,7 +1208,7 @@ class UsersV1Api(BaseApi):
1208
1208
  Optional[StrictStr], Field(description="Query filter the search.")
1209
1209
  ] = None,
1210
1210
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
1211
- **kwargs
1211
+ **kwargs,
1212
1212
  ) -> V1ListTokenResponse: # noqa: E501
1213
1213
  """List tokens # noqa: E501
1214
1214
 
@@ -1262,7 +1262,7 @@ class UsersV1Api(BaseApi):
1262
1262
  Optional[StrictStr], Field(description="Query filter the search.")
1263
1263
  ] = None,
1264
1264
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
1265
- **kwargs
1265
+ **kwargs,
1266
1266
  ): # noqa: E501
1267
1267
  """List tokens # noqa: E501
1268
1268
 
@@ -1399,7 +1399,7 @@ class UsersV1Api(BaseApi):
1399
1399
  self,
1400
1400
  token_uuid: Annotated[StrictStr, Field(..., description="UUID")],
1401
1401
  body: Annotated[V1Token, Field(..., description="Token body")],
1402
- **kwargs
1402
+ **kwargs,
1403
1403
  ) -> V1Token: # noqa: E501
1404
1404
  """Patch token # noqa: E501
1405
1405
 
@@ -1436,7 +1436,7 @@ class UsersV1Api(BaseApi):
1436
1436
  self,
1437
1437
  token_uuid: Annotated[StrictStr, Field(..., description="UUID")],
1438
1438
  body: Annotated[V1Token, Field(..., description="Token body")],
1439
- **kwargs
1439
+ **kwargs,
1440
1440
  ): # noqa: E501
1441
1441
  """Patch token # noqa: E501
1442
1442
 
@@ -1715,7 +1715,7 @@ class UsersV1Api(BaseApi):
1715
1715
  self,
1716
1716
  token_uuid: Annotated[StrictStr, Field(..., description="UUID")],
1717
1717
  body: Annotated[V1Token, Field(..., description="Token body")],
1718
- **kwargs
1718
+ **kwargs,
1719
1719
  ) -> V1Token: # noqa: E501
1720
1720
  """Update token # noqa: E501
1721
1721
 
@@ -1745,16 +1745,14 @@ class UsersV1Api(BaseApi):
1745
1745
  :rtype: V1Token
1746
1746
  """
1747
1747
  kwargs["_return_http_data_only"] = True
1748
- return self.update_token_with_http_info(
1749
- token_uuid, body, **kwargs
1750
- ) # noqa: E501
1748
+ return self.update_token_with_http_info(token_uuid, body, **kwargs) # noqa: E501
1751
1749
 
1752
1750
  @validate_call
1753
1751
  def update_token_with_http_info(
1754
1752
  self,
1755
1753
  token_uuid: Annotated[StrictStr, Field(..., description="UUID")],
1756
1754
  body: Annotated[V1Token, Field(..., description="Token body")],
1757
- **kwargs
1755
+ **kwargs,
1758
1756
  ): # noqa: E501
1759
1757
  """Update token # noqa: E501
1760
1758
 
@@ -17,7 +17,7 @@ class VersionsV1Api(BaseApi):
17
17
  uuid: Annotated[StrictStr, Field(..., description="UUid")],
18
18
  version: Annotated[StrictStr, Field(..., description="Version")],
19
19
  service: Annotated[StrictStr, Field(..., description="Service")],
20
- **kwargs
20
+ **kwargs,
21
21
  ) -> V1Compatibility:
22
22
  """Get compatibility versions
23
23
 
@@ -57,7 +57,7 @@ class VersionsV1Api(BaseApi):
57
57
  uuid: Annotated[StrictStr, Field(..., description="UUid")],
58
58
  version: Annotated[StrictStr, Field(..., description="Version")],
59
59
  service: Annotated[StrictStr, Field(..., description="Service")],
60
- **kwargs
60
+ **kwargs,
61
61
  ):
62
62
  """Get compatibility versions
63
63
 
@@ -184,7 +184,7 @@ class VersionsV1Api(BaseApi):
184
184
  def get_installation(
185
185
  self,
186
186
  auth: Annotated[Optional[bool], Field(description="auth.")] = None,
187
- **kwargs
187
+ **kwargs,
188
188
  ) -> V1Installation:
189
189
  """Get installation versions
190
190
 
@@ -218,7 +218,7 @@ class VersionsV1Api(BaseApi):
218
218
  def get_installation_with_http_info(
219
219
  self,
220
220
  auth: Annotated[Optional[bool], Field(description="auth.")] = None,
221
- **kwargs
221
+ **kwargs,
222
222
  ):
223
223
  """Get installation versions
224
224
 
@@ -129,9 +129,7 @@ class RESTClientObject(object):
129
129
  if body is not None:
130
130
  body = orjson_dumps(body)
131
131
  args["data"] = body
132
- elif (
133
- headers["Content-Type"] == "application/x-www-form-urlencoded"
134
- ): # noqa: E501
132
+ elif headers["Content-Type"] == "application/x-www-form-urlencoded": # noqa: E501
135
133
  args["data"] = aiohttp.FormData(post_params)
136
134
  elif headers["Content-Type"] == "multipart/form-data":
137
135
  # must del headers['Content-Type'], or the correct
@@ -1,6 +1,6 @@
1
1
  import datetime
2
2
 
3
- from typing import Any, Dict, Optional
3
+ from typing import Any, Dict, List, Optional
4
4
 
5
5
  from clipped.compact.pydantic import StrictStr
6
6
  from clipped.config.schema import BaseAllowSchemaModel
@@ -18,7 +18,8 @@ class V1Organization(BaseAllowSchemaModel):
18
18
  expiration: Optional[int] = None
19
19
  role: Optional[StrictStr] = None
20
20
  queue: Optional[StrictStr] = None
21
- preset: Optional[StrictStr] = None
21
+ default_presets: Optional[List[StrictStr]] = None
22
+ default_presets_ordered: Optional[List[StrictStr]] = None
22
23
  is_cloud_viewable: Optional[bool] = None
23
24
  archived_deletion_interval: Optional[int] = None
24
25
  auth: Optional[Dict[str, Any]] = None
@@ -8,7 +8,8 @@ from polyaxon._sdk.schemas.v1_user_access import V1UserAccess
8
8
 
9
9
  class V1ProjectSettings(BaseAllowSchemaModel):
10
10
  connections: Optional[List[StrictStr]] = None
11
- preset: Optional[StrictStr] = None
11
+ default_presets: Optional[List[StrictStr]] = None
12
+ default_presets_ordered: Optional[List[StrictStr]] = None
12
13
  presets: Optional[List[StrictStr]] = None
13
14
  queue: Optional[StrictStr] = None
14
15
  queues: Optional[List[StrictStr]] = None
@@ -1,6 +1,6 @@
1
1
  from typing import Any, Dict, List, Optional
2
2
 
3
- from clipped.compact.pydantic import Field, StrictStr
3
+ from clipped.compact.pydantic import StrictStr
4
4
  from clipped.config.schema import BaseAllowSchemaModel
5
5
 
6
6
 
@@ -1,4 +1,4 @@
1
- from typing import Optional
1
+ from typing import List, Optional
2
2
 
3
3
  from clipped.compact.pydantic import StrictStr
4
4
  from clipped.config.schema import BaseAllowSchemaModel
@@ -13,5 +13,6 @@ class V1UserAccess(BaseAllowSchemaModel):
13
13
  user: Optional[StrictStr] = None
14
14
  user_data: Optional[V1UserAccessData] = None
15
15
  queue: Optional[StrictStr] = None
16
- preset: Optional[StrictStr] = None
16
+ default_presets: Optional[List[StrictStr]] = None
17
+ default_presets_ordered: Optional[List[StrictStr]] = None
17
18
  namespace: Optional[StrictStr] = None
@@ -556,9 +556,7 @@ class ApiClient(object):
556
556
  new_params = []
557
557
  if collection_formats is None:
558
558
  collection_formats = {}
559
- for k, v in (
560
- params.items() if isinstance(params, dict) else params
561
- ): # noqa: E501
559
+ for k, v in params.items() if isinstance(params, dict) else params: # noqa: E501
562
560
  if k in collection_formats:
563
561
  collection_format = collection_formats[k]
564
562
  if collection_format == "multi":
@@ -587,9 +585,7 @@ class ApiClient(object):
587
585
  new_params = []
588
586
  if collection_formats is None:
589
587
  collection_formats = {}
590
- for k, v in (
591
- params.items() if isinstance(params, dict) else params
592
- ): # noqa: E501
588
+ for k, v in params.items() if isinstance(params, dict) else params: # noqa: E501
593
589
  if isinstance(v, (int, float)):
594
590
  v = str(v)
595
591
  if isinstance(v, bool):
@@ -51,9 +51,7 @@ class RESTClientObject(object):
51
51
 
52
52
  addition_pool_args = {}
53
53
  if configuration.assert_hostname is not None:
54
- addition_pool_args[
55
- "assert_hostname"
56
- ] = configuration.assert_hostname # noqa: E501
54
+ addition_pool_args["assert_hostname"] = configuration.assert_hostname # noqa: E501
57
55
 
58
56
  if configuration.retries is not None:
59
57
  addition_pool_args["retries"] = configuration.retries
@@ -78,7 +76,7 @@ class RESTClientObject(object):
78
76
  key_file=configuration.key_file,
79
77
  proxy_url=configuration.proxy,
80
78
  proxy_headers=configuration.proxy_headers,
81
- **addition_pool_args
79
+ **addition_pool_args,
82
80
  )
83
81
  else:
84
82
  self.pool_manager = urllib3.PoolManager(
@@ -88,7 +86,7 @@ class RESTClientObject(object):
88
86
  ca_certs=configuration.ssl_ca_cert,
89
87
  cert_file=configuration.cert_file,
90
88
  key_file=configuration.key_file,
91
- **addition_pool_args
89
+ **addition_pool_args,
92
90
  )
93
91
 
94
92
  def request(
@@ -161,9 +159,7 @@ class RESTClientObject(object):
161
159
  timeout=timeout,
162
160
  headers=headers,
163
161
  )
164
- elif (
165
- headers["Content-Type"] == "application/x-www-form-urlencoded"
166
- ): # noqa: E501
162
+ elif headers["Content-Type"] == "application/x-www-form-urlencoded": # noqa: E501
167
163
  r = self.pool_manager.request(
168
164
  method,
169
165
  url,
polyaxon/pkg.py CHANGED
@@ -1,5 +1,5 @@
1
1
  NAME = "polyaxon"
2
- VERSION = "2.6.0-rc1"
2
+ VERSION = "2.7.0-rc0"
3
3
  SCHEMA_VERSION = 1.1
4
4
  DESC = "Command Line Interface (CLI) and client to interact with Polyaxon API."
5
5
  URL = "https://github.com/polyaxon/polyaxon"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: polyaxon
3
- Version: 2.6.0rc1
3
+ Version: 2.7.0rc0
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.0rc6
38
- Requires-Dist: vents==0.5.0rc7
37
+ Requires-Dist: clipped==0.10.*
38
+ Requires-Dist: vents==0.6.*
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.0rc0
54
- Requires-Dist: hypertune==1.2.0rc0
53
+ Requires-Dist: traceml==1.2.*
54
+ Requires-Dist: hypertune==1.2.*
55
55
  Provides-Extra: azure
56
56
  Requires-Dist: adlfs; extra == "azure"
57
57
  Provides-Extra: dev
@@ -60,9 +60,9 @@ Provides-Extra: docker
60
60
  Requires-Dist: docker; extra == "docker"
61
61
  Provides-Extra: fs
62
62
  Requires-Dist: adlfs==2024.12.0; extra == "fs"
63
- Requires-Dist: fsspec==2024.12.0; extra == "fs"
64
- Requires-Dist: gcsfs==2024.12.0; extra == "fs"
65
- Requires-Dist: s3fs==2024.12.0; extra == "fs"
63
+ Requires-Dist: fsspec==2025.2.0; extra == "fs"
64
+ Requires-Dist: gcsfs==2025.2.0; extra == "fs"
65
+ Requires-Dist: s3fs==2025.2.0; extra == "fs"
66
66
  Provides-Extra: fsspec
67
67
  Requires-Dist: fsspec; extra == "fsspec"
68
68
  Provides-Extra: gcs
@@ -93,7 +93,7 @@ Requires-Dist: anyio; extra == "sidecar"
93
93
  [![Slack](https://img.shields.io/badge/Slack-1.5k%20members-blue.svg?style=flat&logo=slack&longCache=true)](https://polyaxon.com/slack/)
94
94
 
95
95
  [![Docs](https://img.shields.io/badge/docs-stable-brightgreen.svg?style=flat&longCache=true)](https://polyaxon.com/docs/)
96
- [![Release](https://img.shields.io/badge/release-v2.6.0-brightgreen.svg?longCache=true)](https://polyaxon.com/docs/releases/2-6/)
96
+ [![Release](https://img.shields.io/badge/release-v2.7.0-brightgreen.svg?longCache=true)](https://polyaxon.com/docs/releases/2-7/)
97
97
  [![GitHub](https://img.shields.io/badge/issue_tracker-github-blue?style=flat&logo=github&longCache=true)](https://github.com/polyaxon/polyaxon/issues)
98
98
  [![GitHub](https://img.shields.io/badge/roadmap-github-blue?style=flat&logo=github&longCache=true)](https://github.com/orgs/polyaxon/projects/5)
99
99