Skip to content

Commit d653df2

Browse files
committed
list tested python versions explicitly
1 parent 6c0bc1a commit d653df2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

whole-repo-tests/test_mypy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from hypothesistooling.projects.hypothesispython import PYTHON_SRC
1717
from hypothesistooling.scripts import pip_tool, tool_path
1818

19-
PYTHON_VERSIONS = [f"3.{v}" for v in range(7, 11)]
19+
PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
2020

2121

2222
def test_mypy_passes_on_hypothesis():

whole-repo-tests/test_pyright.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from hypothesistooling.projects.hypothesispython import HYPOTHESIS_PYTHON, PYTHON_SRC
2222
from hypothesistooling.scripts import pip_tool, tool_path
2323

24-
PYTHON_VERSIONS = [f"3.{v}" for v in range(7, 11)]
24+
PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
2525

2626

2727
@pytest.mark.skip(

0 commit comments

Comments
 (0)