File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 5656 python-version : ${{ env.PYTHON_VERSION }}
5757 cache : ' pipenv'
5858
59- # Sync fails with pipenv 2024.1.0 (current latest version)
60- # TODO: We should retry with later versions of pipenv once they are available.
6159 - name : Install pipenv and pip-versions
62- run : pip install pipenv==2024.0.3 pip-versions
60+ run : pip install pipenv==2024.4.0 pip-versions
6361
6462 - name : Update Pipfiles in accordance with Codeflare-SDK latest release
6563 run : |
7472 # replace existing version of cf-sdk with new version in Pipfile
7573 sed -i "s/codeflare-sdk = .*$/codeflare-sdk = \"~=$CODEFLARE_RELEASE_VERSION\"/g" Pipfile
7674 # Lock dependencies, ensuring pre-release are included and clear previous state
77- if ! pipenv lock --pre --clear ; then
75+ if ! pipenv lock --verbose -- pre --clear ; then
7876 echo "Failed to lock dependencies"
7977 exit 1
8078 fi
9896 echo "Version ${CODEFLARE_RELEASE_VERSION} is available for $package_name"
9997 # list all Pipfile paths having Codeflare-SDK listed
10098 # Extracting only directories from file paths, excluding a `.gitworkflow` and `.git` directory
101- directories+=($(grep --exclude-dir=.git --exclude-dir=.github --include="Pipfile*" -rl "${package_name} = \"~=.*\"" | xargs dirname | sort | uniq))
99+ # Extracting Intel directories as they are not supported in RHOAI
100+ directories+=($(grep --exclude-dir=.git --exclude-dir=.github --exclude-dir=intel --exclude-dir=jupyter/intel --include="Pipfile*" -rl "${package_name} = \"~=.*\"" | xargs dirname | sort | uniq))
102101 counter=0
103102 total=${#directories[@]}
104103 for dir in "${directories[@]}"; do
You can’t perform that action at this time.
0 commit comments