From fb13933407ebdeea15efbdf5a7128fb83962cf7c Mon Sep 17 00:00:00 2001 From: Kevin Date: Wed, 4 Sep 2024 15:38:43 -0400 Subject: [PATCH] install py-3.11 for sync Signed-off-by: Kevin --- .github/workflows/odh-notebooks-sync.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/odh-notebooks-sync.yml b/.github/workflows/odh-notebooks-sync.yml index 00a9c2dee..882704870 100644 --- a/.github/workflows/odh-notebooks-sync.yml +++ b/.github/workflows/odh-notebooks-sync.yml @@ -46,6 +46,8 @@ jobs: with: python-version: | 3.9 + 3.11 + cache: 'pipenv' - name: Install pipenv and pip-versions run: pip install pipenv pip-versions @@ -53,7 +55,7 @@ jobs: - name: Update Pipfiles in accordance with Codeflare-SDK latest release run: | package_name=codeflare-sdk - available_python_versions=("3.9") # add space separated python versions according to 'python-versions' specified in 'Setup Python Environment' step + available_python_versions=("3.9", "3.11") # add space separated python versions according to 'python-versions' specified in 'Setup Python Environment' step install_package_using_pipenv(){ if ! pipenv install ${package_name}~="${CODEFLARE_RELEASE_VERSION}"; then echo "Failed to install ${package_name} with version ${CODEFLARE_RELEASE_VERSION} in $dir"