We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be1b529 commit 9f31175Copy full SHA for 9f31175
dvc/testing/benchmarks/fixtures.py
@@ -125,6 +125,10 @@ def _dvc_bin(*args):
125
check_call([dvc_bin, *args]) # noqa: S603
126
127
_dvc_bin.version = check_output([dvc_bin, "--version"], text=True) # type: ignore[attr-defined] # noqa: S603
128
+
129
+ if version.Version(_dvc_bin.version) < version.Version("2.42.0"):
130
+ venv.install("pathspec<0.10")
131
132
return _dvc_bin
133
134
0 commit comments