Skip to content

Commit

Permalink
fix: change pdm update strategy to eager
Browse files Browse the repository at this point in the history
  • Loading branch information
huxuan committed May 21, 2024
1 parent ae15a51 commit a05cdf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/manager/pep621/processors/pdm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { PdmLockfileSchema, type PyProject } from '../schema';
import { depTypes, parseDependencyGroupRecord } from '../utils';
import type { PyProjectProcessor } from './types';

const pdmUpdateCMD = 'pdm update --no-sync';
const pdmUpdateCMD = 'pdm update --no-sync --update-eager';

export class PdmProcessor implements PyProjectProcessor {
process(project: PyProject, deps: PackageDependency[]): PackageDependency[] {
Expand Down

0 comments on commit a05cdf3

Please sign in to comment.