-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add setup-dev.sh to root and compute_horde for running uv
`uv` does not yet support running sync for all groups. We need to specify each group manually. These scripts are a temporary workaround until the corresponding feature is implemented in `uv`. astral-sh/uv#8594
- Loading branch information
1 parent
c8f8b3e
commit 1b0edae
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
# Copyright 2017, Reef Technologies (reef.pl), All rights reserved. | ||
|
||
set -e | ||
|
||
# Create a lock file, install Python dependencies | ||
[ -f uv.lock ] || uv lock | ||
uv sync --group test --group format --group lint --group type_check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
# Copyright 2017, Reef Technologies (reef.pl), All rights reserved. | ||
|
||
set -e | ||
|
||
# Create a lock file, install Python dependencies | ||
[ -f uv.lock ] || uv lock | ||
uv sync --group dev |