You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/odh-notebooks-sync.yml
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,14 +46,16 @@ jobs:
46
46
with:
47
47
python-version: |
48
48
3.9
49
+
3.11
50
+
cache: 'pipenv'
49
51
50
52
- name: Install pipenv and pip-versions
51
53
run: pip install pipenv pip-versions
52
54
53
55
- name: Update Pipfiles in accordance with Codeflare-SDK latest release
54
56
run: |
55
57
package_name=codeflare-sdk
56
-
available_python_versions=("3.9") # add space separated python versions according to 'python-versions' specified in 'Setup Python Environment' step
58
+
available_python_versions=("3.9", "3.11") # add space separated python versions according to 'python-versions' specified in 'Setup Python Environment' step
57
59
install_package_using_pipenv(){
58
60
if ! pipenv install ${package_name}~="${CODEFLARE_RELEASE_VERSION}"; then
59
61
echo "Failed to install ${package_name} with version ${CODEFLARE_RELEASE_VERSION} in $dir"
0 commit comments