Skip to content

[RAPTOR-14209] Remove python3_pmml dropin env and refs #1619

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

Merged
merged 1 commit into from
Aug 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions .harness/python3_pmml_dafault_pr_input.yaml

This file was deleted.

24 changes: 0 additions & 24 deletions .harness/python3_pmml_image_build_default_pr_input.yaml

This file was deleted.

21 changes: 0 additions & 21 deletions .harness/python3_pmml_local_default_pr_input.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .harness/python3_pmml_local_image_build_default_pr_input.yaml

This file was deleted.

33 changes: 0 additions & 33 deletions .harness/python3_pmml_local_on_pr.yaml

This file was deleted.

33 changes: 0 additions & 33 deletions .harness/python3_pmml_local_on_push_master.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .harness/python3_pmml_publish_to_docker_pr_input.yaml

This file was deleted.

24 changes: 0 additions & 24 deletions .harness/python3_pmml_reconcile_dependencies_default_pr_input.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions .harness/python3_pmml_trivy_scan_pr_input.yaml

This file was deleted.

21 changes: 0 additions & 21 deletions .harness/python3_pmml_update_env_version_pr_input.yaml

This file was deleted.

1 change: 0 additions & 1 deletion DEFINE-INFERENCE-MODEL.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ The DRUM tool has built-in support for the following libraries. If your model is
| PyTorch | *.pth | torch-regressor.pth |
| tf.keras (tensorflow>=2.2.1) | *.h5 | keras-regressor.h5 |
| ONNX | *.onnx | onnx-regressor.onnx |
| pmml | *.pmml | pmml-regressor.pmml |


### R libraries
Expand Down
1 change: 0 additions & 1 deletion DRCODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
/public_dropin_environments/python311_genai_agents @datarobot/buzok
/public_dropin_environments/python3_keras @datarobot/genai-systems @datarobot/core-modeling
/public_dropin_environments/python3_onnx @datarobot/genai-systems
/public_dropin_environments/python3_pmml @datarobot/genai-systems @datarobot/core-modeling
/public_dropin_environments/python3_pytorch @datarobot/genai-systems @datarobot/core-modeling
/public_dropin_environments/python3_sklearn @datarobot/genai-systems @datarobot/core-modeling
/public_dropin_environments/python3_xgboost @datarobot/genai-systems @datarobot/core-modeling
Expand Down
4 changes: 4 additions & 0 deletions custom_model_runner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

#### [1.16.18] - 2025-08-11
##### Removed
- Python3 PMML

#### [1.16.17] - 2025-06-05
##### Changed
- Fixed issue with OTel tracing when flask server uses more then on process
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

from datarobot_drum.drum.adapters.model_adapters.abstract_model_adapter import AbstractModelAdapter
from datarobot_drum.drum.artifact_predictors.keras_predictor import KerasPredictor
from datarobot_drum.drum.artifact_predictors.pmml_predictor import PMMLPredictor
from datarobot_drum.drum.artifact_predictors.sklearn_predictor import SKLearnPredictor
from datarobot_drum.drum.artifact_predictors.torch_predictor import PyTorchPredictor
from datarobot_drum.drum.artifact_predictors.xgboost_predictor import XGBoostPredictor
Expand Down Expand Up @@ -93,7 +92,6 @@ def __init__(self, model_dir, target_type=None):
KerasPredictor(),
XGBoostPredictor(),
PyTorchPredictor(),
PMMLPredictor(),
SKLearnPredictor(),
ONNXPredictor(),
]
Expand Down
Loading