Skip to content

Commit d9afca0

Browse files
joshuatcaseyrobdimsdale
authored andcommitted
Use Python 3.9.* in integration tests
1 parent 0acefff commit d9afca0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

integration/default_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ func testDefault(t *testing.T, context spec.G, it spec.S) {
9393
Expect(logs).To(ContainLines(
9494
" Resolving CPython version",
9595
" Candidate version sources (in priority order):",
96-
` pyproject.toml -> "3.8.*"`,
96+
` pyproject.toml -> "3.9.*"`,
9797
` -> ""`,
9898
` <unknown> -> ""`,
9999
))
100100
Expect(logs).To(ContainLines(
101-
MatchRegexp(`\s*Python version \(using pyproject.toml\): 3\.8\.\d+`),
101+
MatchRegexp(`\s*Python version \(using pyproject.toml\): 3\.9\.\d+`),
102102
))
103103

104104
container, err = docker.Container.Run.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[tool.poetry.dependencies]
2-
python = "3.8.*"
2+
python = "3.9.*"

0 commit comments

Comments
 (0)