Bump Python support to min Python 3.6.0 (#25582)
* Bump Python support to min Python 3.6.0 * Fix type
This commit is contained in:
parent
fe1e761a7a
commit
39b8102ce6
6 changed files with 32 additions and 37 deletions
|
@ -36,6 +36,6 @@ def test_validate_python(mock_exit):
|
|||
mock_exit.reset_mock()
|
||||
|
||||
with patch('sys.version_info',
|
||||
new_callable=PropertyMock(return_value=(3, 5, 3))):
|
||||
new_callable=PropertyMock(return_value=(3, 6, 0))):
|
||||
main.validate_python()
|
||||
assert mock_exit.called is False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue