Skip to content

Commit

Permalink
update to 3.8 for pipfile, installedPackage unit
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Sep 11, 2023
1 parent 23df4df commit f50670e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ verify_ssl = true
[packages]

[requires]
python_version = "3.7"
python_version = "3.8"
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ verify_ssl = true
[packages]

[requires]
python_version = "3.7"
python_version = "3.8"
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ verify_ssl = true
[packages]

[requires]
python_version = "3.7"
python_version = "3.8"
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function getPyProjectTomlFile(): typemoq.IMock<TextDocument> {
.setup((p) => p.getText(typemoq.It.isAny()))
.returns(
() =>
'[build-system]\nrequires = ["flit_core >=3.2,<4"]\nbuild-backend = "flit_core.buildapi"\n\n[project]\nname = "something"\nversion = "2023.0.0"\nrequires-python = ">=3.7"\ndependencies = ["attrs>=21.3.0", "flake8-csv"]\n ',
'[build-system]\nrequires = ["flit_core >=3.2,<4"]\nbuild-backend = "flit_core.buildapi"\n\n[project]\nname = "something"\nversion = "2023.0.0"\nrequires-python = ">=3.8"\ndependencies = ["attrs>=21.3.0", "flake8-csv"]\n ',
);
return someFile;
}
Expand All @@ -76,7 +76,7 @@ function getSomeTomlFile(): typemoq.IMock<TextDocument> {
.setup((p) => p.getText(typemoq.It.isAny()))
.returns(
() =>
'[build-system]\nrequires = ["flit_core >=3.2,<4"]\nbuild-backend = "flit_core.buildapi"\n\n[something]\nname = "something"\nversion = "2023.0.0"\nrequires-python = ">=3.7"\ndependencies = ["attrs>=21.3.0", "flake8-csv"]\n ',
'[build-system]\nrequires = ["flit_core >=3.2,<4"]\nbuild-backend = "flit_core.buildapi"\n\n[something]\nname = "something"\nversion = "2023.0.0"\nrequires-python = ">=3.8"\ndependencies = ["attrs>=21.3.0", "flake8-csv"]\n ',
);
return someFile;
}
Expand Down

0 comments on commit f50670e

Please sign in to comment.