We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b88d36 + c2fb0e4 commit bda7ff6Copy full SHA for bda7ff6
bin/update_virtualenv.py
@@ -53,6 +53,10 @@ def git_ls_remote_versions(url) -> list[VersionTuple]:
53
if version.is_prerelease:
54
log.info("Ignoring pre-release %r", str(version))
55
continue
56
+ # Do not upgrade past 20.22.0 to keep python 3.6 compat
57
+ if version >= Version("20.22.0"):
58
+ log.info("Ignoring %r which is not compatible with python 3.6", str(version))
59
+ continue
60
versions.append(VersionTuple(version, version_string))
61
except InvalidVersion:
62
log.warning("Ignoring ref %r", ref)
0 commit comments