Skip to content

Commit 2895538

Browse files
committedFeb 16, 2025
🐛 Include mlflow.yml in dist so kedro mlflow init works (#635)
1 parent 215d99c commit 2895538

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
### Fixed
6+
7+
- :bug: :construction_worker: Ensure `mlflow.yml` is package with the package distribution so that `kedro mlflow init` can find it ([[#635](https://github.com/Galileo-Galilei/kedro-mlflow/issues/635)]).
8+
59
## [0.14.1] - 2025-02-12
610

711
### Changed

‎kedro_mlflow/template/project/__init__.py

Whitespace-only changes.

‎pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[build-system]
44
# Minimum requirements for the build system to execute.
5-
requires = ["setuptools>=65.5.1"] # PEP 518 specifications
5+
requires = ["setuptools>=65.5.1", "setuptools-scm>=8.0"] # PEP 518 specifications
66
build-backend = "setuptools.build_meta"
77

88
[project]
@@ -94,7 +94,7 @@ zip-safe = false
9494
include = ["kedro_mlflow*"]
9595

9696
[tool.setuptools.package-data]
97-
kedro_mlflow = ["py.typed"]
97+
kedro_mlflow = ["py.typed", "*.yml"]
9898

9999
[tool.setuptools.dynamic]
100100
readme = {file = "README.md", content-type = "text/markdown"}

0 commit comments

Comments
 (0)
Please sign in to comment.