Skip to content

Commit 47db8d4

Browse files
committed
fix: add --no-cache-dir --upgrade to pip install for latest version
1 parent a73d648 commit 47db8d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ runs:
5555
shell: bash
5656
run: |
5757
if [ "${{ inputs.synapsekit-version }}" = "latest" ]; then
58-
pip install --quiet "synapsekit[${{ inputs.extras }}]"
58+
pip install --quiet --no-cache-dir --upgrade "synapsekit[${{ inputs.extras }}]"
5959
else
60-
pip install --quiet "synapsekit[${{ inputs.extras }}]==${{ inputs.synapsekit-version }}"
60+
pip install --quiet --no-cache-dir "synapsekit[${{ inputs.extras }}]==${{ inputs.synapsekit-version }}"
6161
fi
6262
6363
- name: Run EvalCI

0 commit comments

Comments
 (0)