python3Packages.langchain-core: disable bulk updates

Changed files
+2 -1
pkgs
development
python-modules
langchain-core
+2 -1
pkgs/development/python-modules/langchain-core/default.nix
···
tests.pytest = langchain-core.overridePythonAttrs (_: {
doCheck = true;
});
-
updateScript = gitUpdater {
rev-prefix = "langchain-core==";
};
···
tests.pytest = langchain-core.overridePythonAttrs (_: {
doCheck = true;
});
+
# python updater script sets the wrong tag
+
skipBulkUpdate = true;
updateScript = gitUpdater {
rev-prefix = "langchain-core==";
};