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 f74fb1d commit 681329fCopy full SHA for 681329f
.pre-commit-config.yaml
@@ -47,3 +47,14 @@ repos:
47
args: [ --fix ]
48
# Run the formatter.
49
- id: ruff-format
50
+
51
+- repo: local
52
+ hooks:
53
+ - id: update-locks
54
+ name: update-locks
55
+ entry: bash ./scripts/update-locks.sh
56
+ language: python
57
+ require_serial: true
58
+ fail_fast: true
59
+ additional_dependencies:
60
+ - uv
scripts/update-locks.sh
@@ -0,0 +1,12 @@
1
+#!/bin/bash
2
+set -eu
3
4
+python -m uv lock
5
6
+pushd libs/langgraph-checkpoint-mongodb
7
8
+popd
9
10
+pushd libs/langchain-mongodb
11
12
0 commit comments