Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide Deprecate Warnings for Experimental ML commands #4365

Merged
merged 14 commits into from
Jan 15, 2025
Merged
2 changes: 2 additions & 0 deletions detection_rules/ml.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,8 @@ def get_ml_model_manifests_by_model_id(repo: str = 'elastic/detection-rules') ->
@es_experimental.group('ml')
def ml_group():
"""Experimental machine learning commands."""
click.secho('\n***** Deprecation Warning *****\n')
click.secho('\n* The experiment "ml" command(s) are deprecated and will be removed in a future release. *\n')


@ml_group.command('check-files')
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "detection_rules"
version = "0.3.14"
version = "0.3.15"
description = "Detection Rules is the home for rules used by Elastic Security. This repository is used for the development, maintenance, testing, validation, and release of rules for Elastic Security’s Detection Engine."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
Loading