diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index c110081..35947d3 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -19,7 +19,7 @@ jobs: id: setup-python uses: actions/setup-python@v6 with: - python-version: '3.11' + python-version: '3.14' - name: Install Poetry uses: snok/install-poetry@v1 diff --git a/.github/workflows/pypi-publish.yaml b/.github/workflows/pypi-publish.yaml index fdfd740..28bb9e7 100644 --- a/.github/workflows/pypi-publish.yaml +++ b/.github/workflows/pypi-publish.yaml @@ -12,7 +12,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.11' + python-version: '3.14' cache: 'pip' - name: Install dependencies diff --git a/poetry.lock b/poetry.lock index 00d4aaf..24d13d8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -272,10 +272,7 @@ files = [ [package.dependencies] google-api-core = {version = ">=1.34.1,<2.0.dev0 || >=2.11.dev0,<3.0.0dev", extras = ["grpc"]} google-auth = ">=2.14.1,<2.24.0 || >2.24.0,<2.25.0 || >2.25.0,<3.0.0dev" -proto-plus = [ - {version = ">=1.25.0,<2.0.0dev", markers = "python_version >= \"3.13\""}, - {version = ">=1.22.3,<2.0.0dev", markers = "python_version < \"3.13\""}, -] +proto-plus = {version = ">=1.25.0,<2.0.0dev", markers = "python_version >= \"3.13\""} protobuf = ">=3.20.2,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<6.0.0dev" [[package]] @@ -294,10 +291,7 @@ files = [ google-api-core = {version = ">=1.34.1,<2.0.dev0 || >=2.11.dev0,<3.0.0", extras = ["grpc"]} google-auth = ">=2.14.1,<2.24.0 || >2.24.0,<2.25.0 || >2.25.0,<3.0.0" grpc-google-iam-v1 = ">=0.14.0,<1.0.0" -proto-plus = [ - {version = ">=1.25.0,<2.0.0", markers = "python_version >= \"3.13\""}, - {version = ">=1.22.3,<2.0.0"}, -] +proto-plus = {version = ">=1.25.0,<2.0.0", markers = "python_version >= \"3.13\""} protobuf = ">=3.20.2,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<7.0.0" [[package]] @@ -869,5 +863,5 @@ standard = ["colorama (>=0.4) ; sys_platform == \"win32\"", "httptools (>=0.6.3) [metadata] lock-version = "2.1" -python-versions = ">=3.11, <3.14" -content-hash = "d48123b1d9a6807732ded1259c11412feb6f84c3a134c05f150c5b23c1c339af" +python-versions = ">=3.14, <3.15" +content-hash = "ecee4f894ca44a642d1afc37928b5f00ff127477cbfdb0344ee1f9e428aea6b2" diff --git a/pyproject.toml b/pyproject.toml index 59007cf..79a76f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = "MIT" authors = ["Team Simplify "] [tool.poetry.dependencies] -python = ">=3.11, <3.14" +python = ">=3.14, <3.15" google-cloud-tasks = ">=2.16.3, <2.20.0" google-cloud-scheduler = ">=2.13.3, <2.20.0" fastapi = ">=0.110.0, <0.120.0"