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 0458308 commit 6fd607eCopy full SHA for 6fd607e
justfile
@@ -43,14 +43,17 @@ update-deps:
43
# set -euxo pipefail
44
find . -maxdepth 3 -name "pyproject.toml" -exec \
45
echo "[{}]" \; -exec \
46
- poetry update --no-ansi --lock \;
+ echo "Clearring pypi cache..." \; -exec \
47
+ poetry cache clear --all pypi --no-ansi \; -exec \
48
+ poetry update --lock --no-ansi \;
49
50
# [deps] export requirements.txt
51
export-reqs: update-deps
52
#!/usr/bin/env bash
53
54
- printf "%s\n\n" "[{}]" \; -exec \
55
+ echo "[{}]" \; -exec \
56
+ echo "Exporting requirements.txt..." \; -exec \
57
poetry export --no-ansi --without-hashes --output requirements.txt \;
58
59
# [git] update git submodules
0 commit comments