Skip to content

Commit ed0ab92

Browse files
committed
🔨 exclude unsupported python versions from the test matrix
1 parent b2362e0 commit ed0ab92

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

‎scripts/generate_matrix.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,11 @@ def get_available_python_versions(
162162
if max_version and version > max_version:
163163
continue
164164

165-
versions[version.major, version.minor] = version
165+
version_tuple = version.major, version.minor
166+
if version_tuple < MIN_VERSIONS[0][0].release[:2]:
167+
continue
168+
169+
versions[version_tuple] = version
166170

167171
return sorted(versions.values())
168172

0 commit comments

Comments
 (0)