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 1eb9e51 commit 83a3b5aCopy full SHA for 83a3b5a
tests/configure-test-env.sh
@@ -21,12 +21,12 @@ echo ">>>> Configuring Python environment"
21
uv_exist=$(command -v uv)
22
if [ -z $uv_exist ]
23
then
24
+ echo "No uv found - Install uv please: https://docs.astral.sh/uv/getting-started/installation/."
25
+ echo "Using 'uv' is the prefered way. You can still use python and create a .venv in the project."
26
+else
27
echo "Setting up python environnement with uv"
28
# create or sync the virtual env in the project
29
uv sync --frozen
-else
- echo "No uv found - Install uv please: https://docs.astral.sh/uv/getting-started/installation/."
- echo "Using 'uv' is the prefered way. You can still use python and create a .venv in the project."
30
fi
31
32
# Check Julia environment ---
0 commit comments