Add function to extract Python version constraint from pyproject.toml

This commit is contained in:
Julfried 2025-02-16 18:35:08 +01:00
parent ee84cf5cb8
commit aa9072ae31

View file

@ -43,3 +43,31 @@ function getRequiredVersion(filePath: string): string | undefined {
};
return tomlContent["required-version"];
}
export function getPythonVersionFromPyProject(
filePath: string,
): string | undefined {
if (!fs.existsSync(filePath)) {
core.warning(`Could not find pyproject.toml file: ${filePath}`);
return undefined;
}
let pythonVersionConstraint: string | undefined;
try {
const fileContent = fs.readFileSync(filePath, "utf-8");
const tomlContent = toml.parse(fileContent) as {
tool?: { uv?: { "requires-python"?: string } };
};
pythonVersionConstraint = tomlContent?.tool?.uv?.["requires-python"];
if (pythonVersionConstraint) {
core.info(`Extracted Python version constraint from ${filePath}: ${pythonVersionConstraint}`);
}
} catch (err) {
const message = (err as Error).message;
core.warning(`Error while parsing ${filePath} for Python version: ${message}`);
}
return pythonVersionConstraint;
}