From 8a03d44fbe125ae1202f43b7c6e54c98eca94d4d Mon Sep 17 00:00:00 2001 From: Chalmer Lowe Date: Fri, 7 Jun 2024 13:52:20 -0400 Subject: [PATCH] fix: set minimum allowable version of sqlite when performing a conda install (#780) Fix: sets minimum allowable version of `sqlite` when performing a `conda` install. Conda installs were killing the install of packages in the presubmit `conda_test-3.12` test. See this [check for context](https://source.cloud.google.com/results/invocations/beabfa58-9228-40fb-a60b-48df1944b159). --- noxfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/noxfile.py b/noxfile.py index 3d0ce244..9581c251 100644 --- a/noxfile.py +++ b/noxfile.py @@ -607,6 +607,7 @@ def conda_test(session): "pydata-google-auth", "tqdm", "protobuf", + "sqlite>3.31.1", # v3.31.1 caused test failures ] install_conda_unittest_dependencies(session, standard_deps, conda_forge_packages)