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>
This commit is contained in:
David Duong
2023-10-30 23:18:53 +01:00
committed by GitHub
parent e914283cf9
commit d39b4b61b6
29 changed files with 8764 additions and 6842 deletions

File diff suppressed because it is too large Load Diff