mirror of https://github.com/aminya/setup-cpp
fix: set the minimum python version 3.7.9
This commit is contained in:
parent
5ab4d6a34d
commit
d841abd854
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
|
@ -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)
|
||||||
|
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue