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
See also
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)