Skip to content

Commit d841abd

Browse files
committed
fix: set the minimum python version 3.7.9
1 parent 5ab4d6a commit d841abd

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

dist/node12/setup-cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node12/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node16/setup-cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node16/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/python/__tests__/python.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ describe("setup-python", () => {
2424

2525
it("should setup python via system", async () => {
2626
process.env.CI = "false"
27+
process.env.GITHUB_ACTIONS = "false"
2728

2829
const installInfo = await setupPython(getVersion("python", "true", await ubuntuVersion()), directory, process.arch)
2930

src/versions/default_versions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const DefaultVersions: Record<string, string | undefined> = {
3232

3333
export const MinVersions: Record<string, string | undefined> = {
3434
pip: "22.3.1",
35-
python: "3.8.0",
35+
python: "3.7.9",
3636
}
3737

3838
/// If an ubuntu versions is not in this map:

0 commit comments

Comments
 (0)