Skip to content

Commit

Permalink
fix(manager/poetry): limit fallback poetry constraint (#28022)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Mar 19, 2024
1 parent 9902cf4 commit 6ed22b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/manager/poetry/schema.ts
Expand Up @@ -371,7 +371,7 @@ export const PoetrySchemaToml = Toml.pipe(PoetrySchema);
const poetryConstraint: Record<string, string> = {
'1.0': '<1.1.0',
'1.1': '<1.3.0',
'2.0': '>=1.3.0',
'2.0': '>=1.3.0 <1.4.0', // 1.4.0 introduced embedding of the poetry version in lock file header
};

export const Lockfile = Toml.pipe(
Expand Down

0 comments on commit 6ed22b9

Please sign in to comment.