Skip to content

Commit

Permalink
fix vanilla launch
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Oct 26, 2024
1 parent 57d66eb commit 8754e99
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON"lenskit[test]"
uv pip install --python $PYTHON "lenskit[test]"
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON"lenskit[test]""lenskit-funksvd"
uv pip install --python $PYTHON "lenskit[test]" "lenskit-funksvd"
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON"lenskit[test]" --resolution=lowest-direct
uv pip install --python $PYTHON "lenskit[test]" --resolution=lowest-direct
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON"lenskit[test]""lenskit-funksvd" --resolution=lowest-direct
uv pip install --python $PYTHON "lenskit[test]" "lenskit-funksvd" --resolution=lowest-direct
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down Expand Up @@ -377,7 +377,7 @@ jobs:
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON"lenskit[test]""lenskit-implicit" --resolution=lowest-direct
uv pip install --python $PYTHON "lenskit[test]" "lenskit-implicit" --resolution=lowest-direct
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down
2 changes: 1 addition & 1 deletion workflows/test/vanilla.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function vanillaSetup(options: VanillaTestOpts): WorkflowStep[] {
if (pkg == "lenskit") {
pkg = "lenskit[test]";
}
pip += `"${pkg}"`;
pip += ` "${pkg}"`;
}
if (options.dep_strategy == "minimum") {
pip += " --resolution=lowest-direct";
Expand Down

0 comments on commit 8754e99

Please sign in to comment.