Skip to content

Commit

Permalink
Remove jinja templates in pep62 pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaweikho committed Dec 15, 2024
1 parent 6800dd8 commit 40652aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/manager/pep621/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export function parsePyProject(
content: string,
): PyProject | null {
try {
const jsonMap = parseToml(content);
const jsonMap = parseToml(content, { removeTemplates: true });
return PyProjectSchema.parse(jsonMap);
} catch (err) {
logger.debug(
Expand Down

0 comments on commit 40652aa

Please sign in to comment.