File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -61,13 +61,13 @@ def test_alternate_executable_support(self):
6161 cases = [
6262 (
6363 get_python_version_body ,
64- "3.13 \n " ,
64+ "3.14 \n " ,
6565 "test default executable is used when executable_path not specified" ,
6666 ),
6767 (
6868 get_python_version_body
69- | {"executable_path" : "/snekbin/python/3.13 /bin/python" },
70- "3.13 \n " ,
69+ | {"executable_path" : "/snekbin/python/3.14 /bin/python" },
70+ "3.14 \n " ,
7171 "test default executable is used when explicitly set" ,
7272 ),
7373 (
@@ -90,8 +90,8 @@ def test_gil_status(self):
9090 "input" : "import sysconfig; print(sysconfig.get_config_var('Py_GIL_DISABLED'))"
9191 }
9292 cases = [
93- ("3.13 " , "0\n " ),
94- ("3.13t " , "1\n " ),
93+ ("3.14 " , "0\n " ),
94+ ("3.14t " , "1\n " ),
9595 ]
9696 for version , expected in cases :
9797 with self .subTest (version = version , expected = expected ):
You can’t perform that action at this time.
0 commit comments