mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
24 lines
792 B
TypeScript
24 lines
792 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
import { PypiDatasource } from '../../datasource/pypi';
|
|
|
|
export { extractAllPackageFiles, extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export const displayName = 'pip-compile';
|
|
export const url = 'https://pip-tools.readthedocs.io/en/latest/cli/pip-compile';
|
|
export const categories: Category[] = ['python'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [],
|
|
lockFileMaintenance: {
|
|
enabled: true,
|
|
branchTopic: 'pip-compile-refresh',
|
|
commitMessageAction: 'Refresh pip-compile outputs',
|
|
},
|
|
};
|
|
|
|
export const supportedDatasources = [PypiDatasource.id, GitTagsDatasource.id];
|