From d1482ccb52d8ab484bebb7f5e22e929bdc59643c Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sun, 9 Apr 2023 00:21:18 +0300 Subject: [PATCH] doc: update python versions in multipython example Mostly so it has a chance of running on more recent installations. --- doc/en/example/multipython.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/example/multipython.py b/doc/en/example/multipython.py index 9005d31ad..9007be052 100644 --- a/doc/en/example/multipython.py +++ b/doc/en/example/multipython.py @@ -8,7 +8,7 @@ import textwrap import pytest -pythonlist = ["python3.5", "python3.6", "python3.7"] +pythonlist = ["python3.9", "python3.10", "python3.11"] @pytest.fixture(params=pythonlist)