Skip to content

Commit 9271c05

Browse files
authored
fix(STEF-2802): anchor mlflow gitignore patterns to repo root (#814)
The bare 'mlflow' pattern matched anywhere in the tree, which caused hatchling to exclude packages/openstef-models/src/openstef_models/integrations/mlflow/ from the built wheel. Root-anchoring with '/mlflow' limits the match to only the top-level mlflow directory (local MLflow data). Broken since v4.0.0.a17 (commit 1bcf71d). Signed-off-by: Egor Dmitriev <egor.dmitriev@alliander.com>
1 parent 23d207c commit 9271c05

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,5 @@ certificates/
127127
benchmark_results*/
128128

129129
# Mlflow
130-
mlflow
131-
mlflow_artifacts_local
130+
/mlflow
131+
/mlflow_artifacts_local

0 commit comments

Comments
 (0)