Plugin use to tweak the dependencies of the project.
Will be used when we have different constraints for the dependencies, like publish and dependency upgrader like Renovate.
This plugin will let us tweak the dependencies of the published packages.
Config:
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-plugin-tweak-dependencies-version"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-plugin-tweak-dependencies-version]
default = "(present|major|minor|patch|full)" # Default to `full`
"<package>" = "(present|major|minor|patch|full|<alternate>)"
present
=> *
, major
=> x.*
, minor
=> x.y.*
, patch
=> x.y.z
, full
=> keep the original version.
Or just specify an alternate version constraint.
Install the pre-commit hooks:
pip install pre-commit
pre-commit install --allow-missing-config