From a780e53941eb3ca6dfc7c1da8db7d4de4585c19b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Lorr=C3=A9?= <35808396+GeorgesLorre@users.noreply.github.com> Date: Fri, 19 Jan 2024 15:38:55 +0100 Subject: [PATCH] Bump kfp version and enable python 3.11 (#800) Let me know if missed something somewhere --- .github/workflows/pipeline.yaml | 4 ++-- pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index f3014fccb..a60bf22d1 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.8', '3.9', '3.10' ] + python-version: [ '3.8', '3.9', '3.10', '3.11' ] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 7ac3f3cd9..6b18c0013 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">= 3.8, <3.11" +python = ">= 3.8, <3.12" fsspec = ">= 2023.4.0" importlib-resources = { version = ">= 1.3", python = "<3.9" } @@ -56,7 +56,7 @@ s3fs = { version = ">= 2023.4.0", optional = true } adlfs = { version = ">= 2023.4.0", optional = true } docker = {version = ">= 6.1.3", optional = true } -kfp = { version = "2.3.0", optional = true, extras =["kubernetes"] } +kfp = { version = "2.6.0", optional = true, extras =["kubernetes"] } google-cloud-aiplatform = { version = "1.34.0", optional = true} sagemaker = {version = ">= 2.197.0", optional = true} boto3 = {version = "1.28.64", optional = true}