We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2afeca6 + bda7ff6 commit 580205aCopy full SHA for 580205a
.pre-commit-config.yaml
@@ -19,7 +19,7 @@ repos:
19
- id: black
20
21
- repo: https://github.com/charliermarsh/ruff-pre-commit
22
- rev: v0.0.262
+ rev: v0.0.265
23
hooks:
24
- id: ruff
25
args: ["--fix", "--show-fixes"]
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