SCM Version

Get the scm version and writes it to version_file

drain_swamp.monkey.plugins.ds_scm_version.log: logging.Logger

Module level logger

Alternative implementation – Same as setuptools_scm version_infer Raises LookupError if missing pyproject.toml or missing sections tool.drain-swamp and tool.pipenv-unlock

from setuptools_scm._integration.setuptools import infer_version as _infer_version
msg_warn = (
    f"{mod_path} drain-swamp plugins not being run! This should be an error "
    "and stop the build"
)
log.warning(msg_warn)
# setuptools_scm._integration.setuptools._assign_version
# setuptools_scm._config.Configuration.from_file
with (
    patch(
        "setuptools_scm._integration.setuptools._config._read_pyproject",
        new_callable=MagicMock(wraps=ReadPyprojectStrict),
    ),
    patch(
        "setuptools_scm._config._read_pyproject",
        new_callable=MagicMock(wraps=ReadPyprojectStrict),
    ),
):
    # Limited to only setuptools_scm._config.Configuation fields
    _infer_version(dist)
drain_swamp.monkey.plugins.ds_scm_version.on_version_infer(config_settings: dict[str, Any]) str | None

Update version_file depending on kind: current, now, tag, semantic version str

pluggy will inspect this method’s signature. So keep it!