Skip to content
Snippets Groups Projects
Commit 63634829 authored by Ahmed Ilyas's avatar Ahmed Ilyas
Browse files

Merge branch 'use-uv-in-setup' into 'develop'

Use uv in `setup_dev_env.sh`

See merge request !2048
parents 10bf61a3 7e18eee1
No related branches found
No related tags found
1 merge request!2048Use uv in `setup_dev_env.sh`
Pipeline #216432 failed
...@@ -15,12 +15,17 @@ rm -rf nomad/app/static/docs ...@@ -15,12 +15,17 @@ rm -rf nomad/app/static/docs
rm -rf nomad/app/static/gui rm -rf nomad/app/static/gui
rm -rf site rm -rf site
# Check if the 'uv' command is available
if ! command -v uv &> /dev/null; then
pip install uv
fi
# Install nomad # Install nomad
pip install -e ".[infrastructure,parsing,dev]" -c requirements-dev.txt uv pip install -e ".[infrastructure,parsing,dev]" -c requirements-dev.txt
# Install "default" plugins. TODO: This can be removed once we have proper # Install "default" plugins. TODO: This can be removed once we have proper
# distributions projects. # distributions projects.
pip install -r default_plugins.txt -c requirements-dev.txt uv pip install -r default_plugins.txt -c requirements-dev.txt
# Build documentation # Build documentation
sh scripts/generate_docs_artifacts.sh sh scripts/generate_docs_artifacts.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment