fix: set the minimum python version 3.7.9

This commit is contained in:
Amin Yahyaabadi 2023-06-29 13:49:06 -07:00
parent 5ab4d6a34d
commit d841abd854
6 changed files with 6 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -24,6 +24,7 @@ describe("setup-python", () => {
it("should setup python via system", async () => { it("should setup python via system", async () => {
process.env.CI = "false" process.env.CI = "false"
process.env.GITHUB_ACTIONS = "false"
const installInfo = await setupPython(getVersion("python", "true", await ubuntuVersion()), directory, process.arch) const installInfo = await setupPython(getVersion("python", "true", await ubuntuVersion()), directory, process.arch)

View File

@ -32,7 +32,7 @@ export const DefaultVersions: Record<string, string | undefined> = {
export const MinVersions: Record<string, string | undefined> = { export const MinVersions: Record<string, string | undefined> = {
pip: "22.3.1", pip: "22.3.1",
python: "3.8.0", python: "3.7.9",
} }
/// If an ubuntu versions is not in this map: /// If an ubuntu versions is not in this map: