Skip to content

Commit ae7d076

Browse files
Fix ODH notebooks sync workflow
1 parent 713d011 commit ae7d076

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/odh-notebooks-sync.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
uses: actions/setup-python@v4
4545
with:
4646
python-version: |
47-
3.8
4847
3.9
4948
5049
- name: Install pipenv and pip-versions
@@ -92,7 +91,8 @@ jobs:
9291
for dir in "${directories[@]}"; do
9392
counter=$((counter+1))
9493
echo "--Processing directory $counter '$dir' of total $total"
95-
cd "$dir" && pipenv install ${package_name}~="${CODEFLARE_RELEASE_VERSION}" && pipenv --rm && cd -
94+
cd "$dir" && pipenv install ${package_name}~="${CODEFLARE_RELEASE_VERSION}" && pipenv lock --pre --clear && pipenv --rm --clear
95+
cd -
9696
echo "$((total-counter)) directories remaining.."
9797
done
9898
else

0 commit comments

Comments
 (0)