polyaxon 2.4.0rc1__py3-none-any.whl → 2.6.0__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 (218) hide show
  1. polyaxon/_auxiliaries/default_scheduling.py +17 -7
  2. polyaxon/_auxiliaries/init.py +14 -6
  3. polyaxon/_auxiliaries/sidecar.py +10 -8
  4. polyaxon/_cli/dashboard.py +2 -5
  5. polyaxon/_cli/run.py +14 -0
  6. polyaxon/_cli/version.py +4 -1
  7. polyaxon/_compiler/contexts/contexts.py +4 -0
  8. polyaxon/_compiler/resolver/agent.py +10 -9
  9. polyaxon/_compiler/resolver/runtime.py +4 -0
  10. polyaxon/_constants/metadata.py +1 -0
  11. polyaxon/_contexts/keys.py +1 -0
  12. polyaxon/_deploy/schemas/auth.py +3 -3
  13. polyaxon/_deploy/schemas/celery.py +10 -8
  14. polyaxon/_deploy/schemas/deployment.py +148 -116
  15. polyaxon/_deploy/schemas/email.py +8 -8
  16. polyaxon/_deploy/schemas/ingress.py +7 -7
  17. polyaxon/_deploy/schemas/intervals.py +3 -1
  18. polyaxon/_deploy/schemas/operators.py +8 -8
  19. polyaxon/_deploy/schemas/proxy.py +9 -9
  20. polyaxon/_deploy/schemas/rbac.py +1 -1
  21. polyaxon/_deploy/schemas/root_user.py +5 -5
  22. polyaxon/_deploy/schemas/security_context.py +25 -15
  23. polyaxon/_deploy/schemas/service.py +73 -69
  24. polyaxon/_deploy/schemas/ssl.py +3 -3
  25. polyaxon/_deploy/schemas/ui.py +10 -6
  26. polyaxon/_docker/builder/builder.py +4 -1
  27. polyaxon/_docker/converter/base/containers.py +4 -7
  28. polyaxon/_docker/converter/base/env_vars.py +5 -5
  29. polyaxon/_docker/converter/base/mounts.py +2 -2
  30. polyaxon/_docker/docker_types.py +57 -30
  31. polyaxon/_env_vars/keys.py +2 -0
  32. polyaxon/_flow/__init__.py +3 -2
  33. polyaxon/_flow/builds/__init__.py +8 -8
  34. polyaxon/_flow/cache/__init__.py +4 -4
  35. polyaxon/_flow/component/base.py +25 -18
  36. polyaxon/_flow/component/component.py +4 -3
  37. polyaxon/_flow/early_stopping/__init__.py +1 -1
  38. polyaxon/_flow/early_stopping/policies.py +12 -10
  39. polyaxon/_flow/environment/__init__.py +42 -24
  40. polyaxon/_flow/events/__init__.py +1 -1
  41. polyaxon/_flow/hooks/__init__.py +11 -11
  42. polyaxon/_flow/init/__init__.py +41 -25
  43. polyaxon/_flow/io/io.py +57 -47
  44. polyaxon/_flow/joins/__init__.py +5 -5
  45. polyaxon/_flow/matrix/bayes.py +23 -17
  46. polyaxon/_flow/matrix/grid_search.py +16 -7
  47. polyaxon/_flow/matrix/hyperband.py +10 -10
  48. polyaxon/_flow/matrix/hyperopt.py +14 -9
  49. polyaxon/_flow/matrix/iterative.py +14 -8
  50. polyaxon/_flow/matrix/mapping.py +4 -4
  51. polyaxon/_flow/matrix/params.py +138 -77
  52. polyaxon/_flow/matrix/random_search.py +10 -5
  53. polyaxon/_flow/matrix/tuner.py +4 -4
  54. polyaxon/_flow/mounts/artifacts_mounts.py +1 -1
  55. polyaxon/_flow/notifications/__init__.py +1 -1
  56. polyaxon/_flow/operations/base.py +10 -8
  57. polyaxon/_flow/operations/compiled_operation.py +5 -4
  58. polyaxon/_flow/operations/operation.py +30 -22
  59. polyaxon/_flow/optimization/__init__.py +2 -2
  60. polyaxon/_flow/params/params.py +10 -9
  61. polyaxon/_flow/plugins/__init__.py +19 -13
  62. polyaxon/_flow/run/dag.py +12 -9
  63. polyaxon/_flow/run/dask/dask.py +4 -4
  64. polyaxon/_flow/run/dask/replica.py +17 -11
  65. polyaxon/_flow/run/job.py +17 -11
  66. polyaxon/_flow/run/kubeflow/mpi_job.py +10 -5
  67. polyaxon/_flow/run/kubeflow/mx_job.py +25 -9
  68. polyaxon/_flow/run/kubeflow/paddle_job.py +16 -9
  69. polyaxon/_flow/run/kubeflow/pytorch_job.py +24 -17
  70. polyaxon/_flow/run/kubeflow/replica.py +17 -11
  71. polyaxon/_flow/run/kubeflow/scheduling_policy.py +7 -5
  72. polyaxon/_flow/run/kubeflow/tf_job.py +15 -8
  73. polyaxon/_flow/run/kubeflow/xgboost_job.py +9 -4
  74. polyaxon/_flow/run/ray/ray.py +9 -6
  75. polyaxon/_flow/run/ray/replica.py +25 -16
  76. polyaxon/_flow/run/resources.py +14 -13
  77. polyaxon/_flow/run/service.py +4 -4
  78. polyaxon/_flow/schedules/cron.py +4 -4
  79. polyaxon/_flow/schedules/interval.py +4 -4
  80. polyaxon/_flow/templates/__init__.py +3 -3
  81. polyaxon/_flow/termination/__init__.py +3 -3
  82. polyaxon/_fs/async_manager.py +1 -1
  83. polyaxon/_fs/watcher.py +26 -27
  84. polyaxon/_k8s/k8s_validation.py +1 -1
  85. polyaxon/_k8s/logging/async_monitor.py +18 -3
  86. polyaxon/_local_process/converter/base/containers.py +4 -7
  87. polyaxon/_local_process/converter/base/env_vars.py +5 -5
  88. polyaxon/_local_process/process_types.py +15 -12
  89. polyaxon/_polyaxonfile/specs/compiled_operation.py +1 -1
  90. polyaxon/_polyaxonfile/specs/libs/parser.py +1 -1
  91. polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
  92. polyaxon/_polyaxonfile/specs/operation.py +1 -1
  93. polyaxon/_polyaxonfile/specs/sections.py +8 -0
  94. polyaxon/_runner/agent/async_agent.py +9 -6
  95. polyaxon/_runner/agent/base_agent.py +8 -5
  96. polyaxon/_runner/agent/sync_agent.py +8 -5
  97. polyaxon/_runner/converter/converter.py +12 -4
  98. polyaxon/_schemas/agent.py +69 -37
  99. polyaxon/_schemas/authentication.py +4 -4
  100. polyaxon/_schemas/base.py +26 -2
  101. polyaxon/_schemas/checks.py +3 -3
  102. polyaxon/_schemas/cli.py +4 -6
  103. polyaxon/_schemas/client.py +20 -18
  104. polyaxon/_schemas/compatibility.py +4 -4
  105. polyaxon/_schemas/container_resources.py +1 -1
  106. polyaxon/_schemas/home.py +3 -3
  107. polyaxon/_schemas/installation.py +13 -9
  108. polyaxon/_schemas/lifecycle.py +23 -23
  109. polyaxon/_schemas/log_handler.py +2 -2
  110. polyaxon/_schemas/services.py +26 -14
  111. polyaxon/_schemas/types/artifacts.py +3 -3
  112. polyaxon/_schemas/types/dockerfile.py +14 -12
  113. polyaxon/_schemas/types/event.py +2 -2
  114. polyaxon/_schemas/types/file.py +3 -3
  115. polyaxon/_schemas/types/git.py +12 -4
  116. polyaxon/_schemas/types/tensorboard.py +14 -8
  117. polyaxon/_schemas/user.py +3 -3
  118. polyaxon/_schemas/version.py +2 -2
  119. polyaxon/_sdk/api/agents_v1_api.py +45 -45
  120. polyaxon/_sdk/api/artifacts_stores_v1_api.py +3 -3
  121. polyaxon/_sdk/api/auth_v1_api.py +13 -13
  122. polyaxon/_sdk/api/connections_v1_api.py +15 -15
  123. polyaxon/_sdk/api/dashboards_v1_api.py +15 -15
  124. polyaxon/_sdk/api/organizations_v1_api.py +77 -77
  125. polyaxon/_sdk/api/presets_v1_api.py +15 -15
  126. polyaxon/_sdk/api/project_dashboards_v1_api.py +17 -17
  127. polyaxon/_sdk/api/project_searches_v1_api.py +17 -17
  128. polyaxon/_sdk/api/projects_v1_api.py +65 -65
  129. polyaxon/_sdk/api/queues_v1_api.py +19 -19
  130. polyaxon/_sdk/api/runs_v1_api.py +127 -127
  131. polyaxon/_sdk/api/searches_v1_api.py +15 -15
  132. polyaxon/_sdk/api/service_accounts_v1_api.py +27 -27
  133. polyaxon/_sdk/api/tags_v1_api.py +17 -17
  134. polyaxon/_sdk/api/teams_v1_api.py +51 -51
  135. polyaxon/_sdk/api/users_v1_api.py +25 -25
  136. polyaxon/_sdk/api/versions_v1_api.py +7 -7
  137. polyaxon/_sdk/schemas/v1_activity.py +8 -8
  138. polyaxon/_sdk/schemas/v1_agent.py +17 -16
  139. polyaxon/_sdk/schemas/v1_agent_state_response.py +4 -4
  140. polyaxon/_sdk/schemas/v1_agent_state_response_agent_state.py +10 -10
  141. polyaxon/_sdk/schemas/v1_agent_status_body_request.py +3 -3
  142. polyaxon/_sdk/schemas/v1_analytics_spec.py +4 -4
  143. polyaxon/_sdk/schemas/v1_artifact_tree.py +3 -3
  144. polyaxon/_sdk/schemas/v1_auth.py +1 -1
  145. polyaxon/_sdk/schemas/v1_cloning.py +3 -3
  146. polyaxon/_sdk/schemas/v1_connection_response.py +9 -9
  147. polyaxon/_sdk/schemas/v1_dashboard.py +9 -9
  148. polyaxon/_sdk/schemas/v1_dashboard_spec.py +5 -5
  149. polyaxon/_sdk/schemas/v1_entities_tags.py +2 -2
  150. polyaxon/_sdk/schemas/v1_entities_transfer.py +2 -2
  151. polyaxon/_sdk/schemas/v1_entity_notification_body.py +7 -7
  152. polyaxon/_sdk/schemas/v1_entity_stage_body_request.py +5 -5
  153. polyaxon/_sdk/schemas/v1_entity_status_body_request.py +5 -5
  154. polyaxon/_sdk/schemas/v1_events_response.py +2 -2
  155. polyaxon/_sdk/schemas/v1_list_activities_response.py +4 -4
  156. polyaxon/_sdk/schemas/v1_list_agents_response.py +4 -4
  157. polyaxon/_sdk/schemas/v1_list_bookmarks_response.py +4 -4
  158. polyaxon/_sdk/schemas/v1_list_connections_response.py +4 -4
  159. polyaxon/_sdk/schemas/v1_list_dashboards_response.py +4 -4
  160. polyaxon/_sdk/schemas/v1_list_organization_members_response.py +4 -4
  161. polyaxon/_sdk/schemas/v1_list_organizations_response.py +4 -4
  162. polyaxon/_sdk/schemas/v1_list_presets_response.py +4 -4
  163. polyaxon/_sdk/schemas/v1_list_project_versions_response.py +4 -4
  164. polyaxon/_sdk/schemas/v1_list_projects_response.py +4 -4
  165. polyaxon/_sdk/schemas/v1_list_queues_response.py +4 -4
  166. polyaxon/_sdk/schemas/v1_list_run_artifacts_response.py +4 -4
  167. polyaxon/_sdk/schemas/v1_list_run_connections_response.py +4 -4
  168. polyaxon/_sdk/schemas/v1_list_run_edges_response.py +4 -4
  169. polyaxon/_sdk/schemas/v1_list_runs_response.py +4 -4
  170. polyaxon/_sdk/schemas/v1_list_searches_response.py +4 -4
  171. polyaxon/_sdk/schemas/v1_list_service_accounts_response.py +4 -4
  172. polyaxon/_sdk/schemas/v1_list_tags_response.py +4 -4
  173. polyaxon/_sdk/schemas/v1_list_team_members_response.py +4 -4
  174. polyaxon/_sdk/schemas/v1_list_teams_response.py +4 -4
  175. polyaxon/_sdk/schemas/v1_list_token_response.py +4 -4
  176. polyaxon/_sdk/schemas/v1_operation_body.py +8 -8
  177. polyaxon/_sdk/schemas/v1_organization.py +16 -16
  178. polyaxon/_sdk/schemas/v1_organization_member.py +6 -6
  179. polyaxon/_sdk/schemas/v1_password_change.py +3 -3
  180. polyaxon/_sdk/schemas/v1_pipeline.py +3 -3
  181. polyaxon/_sdk/schemas/v1_preset.py +11 -12
  182. polyaxon/_sdk/schemas/v1_project.py +17 -17
  183. polyaxon/_sdk/schemas/v1_project_settings.py +11 -11
  184. polyaxon/_sdk/schemas/v1_project_version.py +20 -20
  185. polyaxon/_sdk/schemas/v1_queue.py +12 -12
  186. polyaxon/_sdk/schemas/v1_run.py +38 -38
  187. polyaxon/_sdk/schemas/v1_run_connection.py +3 -3
  188. polyaxon/_sdk/schemas/v1_run_edge.py +5 -5
  189. polyaxon/_sdk/schemas/v1_run_edge_lineage.py +3 -3
  190. polyaxon/_sdk/schemas/v1_run_edges_graph.py +1 -1
  191. polyaxon/_sdk/schemas/v1_run_reference_catalog.py +4 -4
  192. polyaxon/_sdk/schemas/v1_run_settings.py +9 -9
  193. polyaxon/_sdk/schemas/v1_search.py +10 -10
  194. polyaxon/_sdk/schemas/v1_search_spec.py +14 -14
  195. polyaxon/_sdk/schemas/v1_section_spec.py +12 -12
  196. polyaxon/_sdk/schemas/v1_service_account.py +9 -9
  197. polyaxon/_sdk/schemas/v1_settings_catalog.py +4 -4
  198. polyaxon/_sdk/schemas/v1_tag.py +6 -6
  199. polyaxon/_sdk/schemas/v1_team.py +11 -11
  200. polyaxon/_sdk/schemas/v1_team_member.py +6 -6
  201. polyaxon/_sdk/schemas/v1_team_settings.py +2 -2
  202. polyaxon/_sdk/schemas/v1_token.py +10 -10
  203. polyaxon/_sdk/schemas/v1_trial_start.py +6 -6
  204. polyaxon/_sdk/schemas/v1_user.py +6 -6
  205. polyaxon/_sdk/schemas/v1_user_access.py +7 -7
  206. polyaxon/_sdk/schemas/v1_user_email.py +1 -1
  207. polyaxon/_sdk/schemas/v1_user_singup.py +5 -5
  208. polyaxon/_sdk/schemas/v1_uuids.py +1 -1
  209. polyaxon/_sidecar/container/__init__.py +13 -8
  210. polyaxon/_utils/cli_constants.py +2 -0
  211. polyaxon/_utils/test_utils.py +2 -1
  212. polyaxon/pkg.py +1 -1
  213. {polyaxon-2.4.0rc1.dist-info → polyaxon-2.6.0.dist-info}/METADATA +13 -13
  214. {polyaxon-2.4.0rc1.dist-info → polyaxon-2.6.0.dist-info}/RECORD +218 -218
  215. {polyaxon-2.4.0rc1.dist-info → polyaxon-2.6.0.dist-info}/WHEEL +1 -1
  216. {polyaxon-2.4.0rc1.dist-info → polyaxon-2.6.0.dist-info}/LICENSE +0 -0
  217. {polyaxon-2.4.0rc1.dist-info → polyaxon-2.6.0.dist-info}/entry_points.txt +0 -0
  218. {polyaxon-2.4.0rc1.dist-info → polyaxon-2.6.0.dist-info}/top_level.txt +0 -0
@@ -8,13 +8,13 @@ from clipped.types.uuids import UUIDStr
8
8
 
9
9
 
10
10
  class V1Token(BaseAllowSchemaModel):
11
- uuid: Optional[UUIDStr]
12
- key: Optional[StrictStr]
13
- name: Optional[StrictStr]
14
- scopes: Optional[List[StrictStr]]
15
- services: Optional[List[StrictStr]]
16
- started_at: Optional[datetime.datetime]
17
- expires_at: Optional[datetime.datetime]
18
- created_at: Optional[datetime.datetime]
19
- updated_at: Optional[datetime.datetime]
20
- expiration: Optional[int]
11
+ uuid: Optional[UUIDStr] = None
12
+ key: Optional[StrictStr] = None
13
+ name: Optional[StrictStr] = None
14
+ scopes: Optional[List[StrictStr]] = None
15
+ services: Optional[List[StrictStr]] = None
16
+ started_at: Optional[datetime.datetime] = None
17
+ expires_at: Optional[datetime.datetime] = None
18
+ created_at: Optional[datetime.datetime] = None
19
+ updated_at: Optional[datetime.datetime] = None
20
+ expiration: Optional[int] = None
@@ -6,9 +6,9 @@ from clipped.types.email import EmailStr
6
6
 
7
7
 
8
8
  class V1TrialStart(BaseAllowSchemaModel):
9
- name: Optional[StrictStr]
10
- email: Optional[EmailStr]
11
- organization: Optional[StrictStr]
12
- plan: Optional[StrictStr]
13
- seats: Optional[int]
14
- details: Optional[Dict[str, Any]]
9
+ name: Optional[StrictStr] = None
10
+ email: Optional[EmailStr] = None
11
+ organization: Optional[StrictStr] = None
12
+ plan: Optional[StrictStr] = None
13
+ seats: Optional[int] = None
14
+ details: Optional[Dict[str, Any]] = None
@@ -5,9 +5,9 @@ from clipped.config.schema import BaseAllowSchemaModel
5
5
 
6
6
 
7
7
  class V1User(BaseAllowSchemaModel):
8
- username: Optional[StrictStr]
9
- email: Optional[StrictStr]
10
- name: Optional[StrictStr]
11
- kind: Optional[StrictStr]
12
- theme: Optional[int]
13
- organization: Optional[StrictStr]
8
+ username: Optional[StrictStr] = None
9
+ email: Optional[StrictStr] = None
10
+ name: Optional[StrictStr] = None
11
+ kind: Optional[StrictStr] = None
12
+ theme: Optional[int] = None
13
+ organization: Optional[StrictStr] = None
@@ -5,13 +5,13 @@ from clipped.config.schema import BaseAllowSchemaModel
5
5
 
6
6
 
7
7
  class V1UserAccessData(BaseAllowSchemaModel):
8
- username: Optional[StrictStr]
9
- is_sa: Optional[bool]
8
+ username: Optional[StrictStr] = None
9
+ is_sa: Optional[bool] = None
10
10
 
11
11
 
12
12
  class V1UserAccess(BaseAllowSchemaModel):
13
- user: Optional[StrictStr]
14
- user_data: Optional[V1UserAccessData]
15
- queue: Optional[StrictStr]
16
- preset: Optional[StrictStr]
17
- namespace: Optional[StrictStr]
13
+ user: Optional[StrictStr] = None
14
+ user_data: Optional[V1UserAccessData] = None
15
+ queue: Optional[StrictStr] = None
16
+ preset: Optional[StrictStr] = None
17
+ namespace: Optional[StrictStr] = None
@@ -5,4 +5,4 @@ from clipped.types.email import EmailStr
5
5
 
6
6
 
7
7
  class V1UserEmail(BaseAllowSchemaModel):
8
- email: Optional[EmailStr]
8
+ email: Optional[EmailStr] = None
@@ -6,8 +6,8 @@ from clipped.types.email import EmailStr
6
6
 
7
7
 
8
8
  class V1UserSingup(BaseAllowSchemaModel):
9
- username: Optional[StrictStr]
10
- email: Optional[EmailStr]
11
- organization: Optional[StrictStr]
12
- password: Optional[StrictStr]
13
- invitation_key: Optional[StrictStr]
9
+ username: Optional[StrictStr] = None
10
+ email: Optional[EmailStr] = None
11
+ organization: Optional[StrictStr] = None
12
+ password: Optional[StrictStr] = None
13
+ invitation_key: Optional[StrictStr] = None
@@ -5,4 +5,4 @@ from clipped.types.uuids import UUIDStr
5
5
 
6
6
 
7
7
  class V1Uuids(BaseAllowSchemaModel):
8
- uuids: Optional[List[UUIDStr]]
8
+ uuids: Optional[List[UUIDStr]] = None
@@ -78,13 +78,18 @@ async def start_sidecar(
78
78
  run_kind=pod.metadata.annotations.get("operation.polyaxon.com/kind"),
79
79
  )
80
80
  if monitor_logs:
81
- state["last_logs_check"] = await sync_logs(
82
- run_uuid=run_uuid,
83
- k8s_manager=k8s_manager,
84
- pod=pod,
85
- last_time=state["last_logs_check"],
86
- stream=False,
87
- )
81
+ try:
82
+ state["last_logs_check"] = await sync_logs(
83
+ run_uuid=run_uuid,
84
+ k8s_manager=k8s_manager,
85
+ pod=pod,
86
+ last_time=state["last_logs_check"],
87
+ stream=False,
88
+ )
89
+ except Exception as exp:
90
+ logger.log(
91
+ "An error occurred while syncing logs, Exception %s" % repr(exp)
92
+ )
88
93
  if monitor_outputs:
89
94
  try:
90
95
  await sync_artifacts(
@@ -113,7 +118,7 @@ async def start_sidecar(
113
118
  )
114
119
  update_last_check = True
115
120
  except Exception as e:
116
- logger.debug(
121
+ logger.info(
117
122
  "An error occurred while syncing events summaries, "
118
123
  "Exception %s" % repr(e)
119
124
  )
@@ -45,6 +45,8 @@ pydist/
45
45
  .ipynb_checkpoints
46
46
  # pyenv
47
47
  .python-version
48
+ .venv/
49
+ .virtualenvs/
48
50
  """
49
51
 
50
52
  INIT_FILE_PATH = "polyaxonfile.yaml"
@@ -14,6 +14,7 @@ from polyaxon._schemas.agent import AgentConfig
14
14
  from polyaxon._schemas.authentication import AccessTokenConfig
15
15
  from polyaxon._schemas.cli import CliConfig
16
16
  from polyaxon._schemas.client import ClientConfig
17
+ from polyaxon._schemas.installation import V1Installation
17
18
  from polyaxon.settings import set_agent_config
18
19
 
19
20
 
@@ -76,7 +77,7 @@ def patch_settings(
76
77
 
77
78
  settings.CLI_CONFIG = None
78
79
  if set_cli:
79
- settings.CLI_CONFIG = CliConfig(installation={CliConfig._DIST: _dist.EE})
80
+ settings.CLI_CONFIG = CliConfig(installation=V1Installation(dist=_dist.EE))
80
81
 
81
82
  settings.AGENT_CONFIG = None
82
83
  if set_agent:
polyaxon/pkg.py CHANGED
@@ -1,5 +1,5 @@
1
1
  NAME = "polyaxon"
2
- VERSION = "2.4.0-rc1"
2
+ VERSION = "2.6.0"
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.4.0rc1
3
+ Version: 2.6.0
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.8.*
38
- Requires-Dist: vents==0.4.*
37
+ Requires-Dist: clipped==0.9.*
38
+ Requires-Dist: vents==0.5.*
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,19 +50,19 @@ 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.1.*
54
- Requires-Dist: hypertune==1.1.*
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
58
- Requires-Dist: moto==2.0.5; extra == "dev"
58
+ Requires-Dist: moto==5.0.13; extra == "dev"
59
59
  Provides-Extra: docker
60
60
  Requires-Dist: docker; extra == "docker"
61
61
  Provides-Extra: fs
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"
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"
66
66
  Provides-Extra: fsspec
67
67
  Requires-Dist: fsspec; extra == "fsspec"
68
68
  Provides-Extra: gcs
@@ -72,7 +72,7 @@ Requires-Dist: gitpython; extra == "git"
72
72
  Provides-Extra: init
73
73
  Requires-Dist: docker; extra == "init"
74
74
  Requires-Dist: GitPython<3.2.0; extra == "init"
75
- Requires-Dist: aiofiles==23.2.1; extra == "init"
75
+ Requires-Dist: aiofiles==24.1.0; extra == "init"
76
76
  Provides-Extra: k8s_async
77
77
  Requires-Dist: kubernetes-asyncio>=28.2.1; extra == "k8s-async"
78
78
  Requires-Dist: aiohttp>=3.0.0; extra == "k8s-async"
@@ -84,7 +84,7 @@ Requires-Dist: s3fs; extra == "s3"
84
84
  Provides-Extra: sandbox
85
85
  Requires-Dist: haupt[sandbox]; extra == "sandbox"
86
86
  Provides-Extra: sidecar
87
- Requires-Dist: aiofiles==23.2.1; extra == "sidecar"
87
+ Requires-Dist: aiofiles==24.1.0; extra == "sidecar"
88
88
  Requires-Dist: pandas; extra == "sidecar"
89
89
  Requires-Dist: anyio; extra == "sidecar"
90
90
 
@@ -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.4.0-brightgreen.svg?longCache=true)](https://polyaxon.com/docs/releases/2-1/)
96
+ [![Release](https://img.shields.io/badge/release-v2.6.0-brightgreen.svg?longCache=true)](https://polyaxon.com/docs/releases/2-6/)
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