Automated Dependency Updates for Setuptools (setup.cfg)
Categories: python
Renovate supports updating Setuptools (setup.cfg) dependencies.
File Matching¶
By default, Renovate will check any files matching the following regular expression: /(^|/)setup\.cfg$/.
For details on how to extend a manager's managerFilePatterns value, please follow this link.
Supported datasources¶
This manager supports extracting the following datasources: pypi.
Dependency types¶
This manager extracts the following depType values:
depType |
Description |
|---|---|
install |
Listed under install_requires in the [options] section |
setup |
Listed under setup_requires in the [options] section |
test |
Listed under tests_require in the [options] section |
extra |
Listed under the [options.extras_require] section |
Default config¶
{
"managerFilePatterns": [
"/(^|/)setup\\.cfg$/"
],
"versioning": "pep440"
}
Additional Information¶
Updates dependencies for Python setup.cfg files.