File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -122,20 +122,20 @@ activate:
122122
123123.PHONY : install
124124install : venv
125- @/bin/bash -c " source $( VENV_DIR) /bin/activate && python3 -m uv pip install ."
125+ @/bin/bash -c " source $( VENV_DIR) /bin/activate && uv pip install ."
126126
127127.PHONY : install-db
128128install-db : venv
129- @/bin/bash -c " source $( VENV_DIR) /bin/activate && python3 -m uv pip install .[redis,postgres]"
129+ @/bin/bash -c " source $( VENV_DIR) /bin/activate && uv pip install .[redis,postgres]"
130130
131131.PHONY : install-dev
132132install-dev : venv
133- @/bin/bash -c " source $( VENV_DIR) /bin/activate && python3 -m uv pip install .[ dev] "
133+ @/bin/bash -c " source $( VENV_DIR) /bin/activate && uv pip install --group dev . "
134134
135135.PHONY : update
136136update :
137137 @echo " ⬆️ Updating installed dependencies..."
138- @/bin/bash -c " source $( VENV_DIR) /bin/activate && python3 -m uv pip install -U .[ dev] "
138+ @/bin/bash -c " source $( VENV_DIR) /bin/activate && uv pip install -U --group dev . "
139139
140140# help: check-env - Verify all required env vars in .env are present
141141.PHONY : check-env check-env-dev
You can’t perform that action at this time.
0 commit comments