Skip to content

Commit 960fc91

Browse files
authored
Adjust make command to install deps
1 parent ec26fe1 commit 960fc91

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/pytest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
if: matrix.python-version != '3.9'
204204
# Scikit-learn 1.7.0+ requires Python 3.10+
205205
run: |
206-
make install-py-shiny-templates-deps
206+
make ci-install-py-shiny-templates-deps
207207
208208
- name: Run example app tests
209209
timeout-minutes: 60

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,15 +220,15 @@ ci-install-wheel: dist FORCE
220220
uv pip install dist/shiny*.whl
221221

222222
install-deps: FORCE ## install dependencies
223-
uv pip install -e ".[dev,test]" --upgrade
223+
pip install -e ".[dev,test]" --upgrade
224224
ci-install-deps: FORCE
225225
uv pip install -e ".[dev,test]"
226-
install-py-shiny-templates-deps: FORCE
226+
ci-install-py-shiny-templates-deps: FORCE
227227
uv pip install -r py-shiny-templates/requirements.txt
228228

229229
install-docs: FORCE
230-
uv pip install -e ".[dev,test,doc]"
231-
uv pip install https://github.com/posit-dev/py-shinylive/tarball/main
230+
pip install -e ".[dev,test,doc]"
231+
pip install https://github.com/posit-dev/py-shinylive/tarball/main
232232
ci-install-docs: FORCE
233233
uv pip install -e ".[dev,test,doc]" \
234234
"shinylive @ git+https://github.com/posit-dev/py-shinylive.git"

0 commit comments

Comments
 (0)