Make sure the latest changes work with Python 3.6/3.7

This commit is contained in:
Dave Halter
2020-01-10 15:14:22 +01:00
parent 3ba68b5bc6
commit 4f56ec5daf
2 changed files with 5 additions and 2 deletions

View File

@@ -641,7 +641,7 @@ def bar():
return float
@pytest.mark.skipif(sys.version_info < (3, 5), reason="Ignore Python 2, because EOL")
@pytest.mark.skipif(sys.version_info < (3, 6), reason="Ignore Python 2, because EOL")
@pytest.mark.parametrize(
'annotations, result, code', [
({}, [], ''),