langchain
d39b4b61 - Batch apply `poetry lock --no-update` for all templates (#12531)

Commit
2 years ago
Batch apply `poetry lock --no-update` for all templates (#12531) Ran the following bash script for all templates ```bash #!/bin/bash set -e current_dir="$(pwd)" for directory in */; do if [ -d "$directory" ]; then (cd "$directory" && poetry lock --no-update) fi done cd "$current_dir" ``` Co-authored-by: Bagatur <baskaryan@gmail.com>
Author
Parents
Loading