From e4f48bae6ab0e434e8e4b59525632b0afd888e4a Mon Sep 17 00:00:00 2001 From: Andrea Peruffo Date: Wed, 16 Aug 2023 15:22:13 +0100 Subject: [PATCH] Bump Kiota and Python related libs (#3586) --- python-sdk/Makefile | 1 + python-sdk/kiota-gen.py | 2 +- python-sdk/poetry.lock | 16 ++++++++-------- python-sdk/pyproject.toml | 7 ++++--- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/python-sdk/Makefile b/python-sdk/Makefile index 182ac5545e..166811884c 100644 --- a/python-sdk/Makefile +++ b/python-sdk/Makefile @@ -2,6 +2,7 @@ clean: rm -f openapi.json rm -rf apicurioregistrysdk/client + rm -rf kiota_tmp install: poetry install diff --git a/python-sdk/kiota-gen.py b/python-sdk/kiota-gen.py index dfededed68..89be237826 100644 --- a/python-sdk/kiota-gen.py +++ b/python-sdk/kiota-gen.py @@ -8,7 +8,7 @@ import platform from pathlib import Path -KIOTA_VERSION = "1.4.0" +KIOTA_VERSION = "1.5.1" KIOTA_OS_NAMES = {"Windows": "win", "Darwin": "osx", "Linux": "linux"} KIOTA_ARCH_NAMES = {"32bit": "x86", "64bit": "x64"} diff --git a/python-sdk/poetry.lock b/python-sdk/poetry.lock index 366687b861..5c8c912ebc 100644 --- a/python-sdk/poetry.lock +++ b/python-sdk/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.5.0 and should not be changed by hand. [[package]] name = "anyio" @@ -318,13 +318,13 @@ files = [ [[package]] name = "microsoft-kiota-abstractions" -version = "0.6.0" +version = "0.7.1" description = "Core abstractions for kiota generated libraries in Python" optional = false python-versions = "*" files = [ - {file = "microsoft_kiota_abstractions-0.6.0-py2.py3-none-any.whl", hash = "sha256:838ebd421e9eea5c1b4655b7722968b4e8c4540da004382c0cd5b5203db1b1d5"}, - {file = "microsoft_kiota_abstractions-0.6.0.tar.gz", hash = "sha256:bfb047b14c554f1c1bd29e587b0e91bd80e433a4e82d4ceb5828c049edf89a47"}, + {file = "microsoft_kiota_abstractions-0.7.1-py2.py3-none-any.whl", hash = "sha256:545528d104bc7528558af2610b2c49703ba359448ddc41bb2d56bb81aef8892e"}, + {file = "microsoft_kiota_abstractions-0.7.1.tar.gz", hash = "sha256:080a2fe924a7a48633fd514b346f73cc438fd7e62bdfbae865dc6636732c524c"}, ] [package.dependencies] @@ -347,13 +347,13 @@ microsoft-kiota_abstractions = ">=0.4.0" [[package]] name = "microsoft-kiota-serialization-json" -version = "0.3.7" +version = "0.4.0" description = "Implementation of Kiota Serialization interfaces for JSON" optional = false python-versions = "*" files = [ - {file = "microsoft_kiota_serialization_json-0.3.7-py2.py3-none-any.whl", hash = "sha256:613c68c2d87026801697f2a428d955e8b93da90e54b8704f469b8fb9346e9542"}, - {file = "microsoft_kiota_serialization_json-0.3.7.tar.gz", hash = "sha256:7c18d1153e55d35718e31146fececb0ac6e819e0666db0f05510bbe4d287205e"}, + {file = "microsoft_kiota_serialization_json-0.4.0-py2.py3-none-any.whl", hash = "sha256:43b4156990aaa3d1ce1847aa466996548f67288bdcf591d2282fb241c3e20a27"}, + {file = "microsoft_kiota_serialization_json-0.4.0.tar.gz", hash = "sha256:8c967311bad089805f08f374930e77947244530406116ad2e950379824d1f739"}, ] [package.dependencies] @@ -588,4 +588,4 @@ zstd = ["zstandard (>=0.18.0)"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "ff056f49d15b9bf91a5d38d531118caa9753e88f3afec465b36968246d1434e3" +content-hash = "f8d7ff24893ff8e0e9a599da0f3566861a4b63eb5bbfbe44f810cb2823573081" diff --git a/python-sdk/pyproject.toml b/python-sdk/pyproject.toml index 244f7e8f54..02ce552c19 100644 --- a/python-sdk/pyproject.toml +++ b/python-sdk/pyproject.toml @@ -19,10 +19,11 @@ keywords = ["apicurio", "registry"] [tool.poetry.dependencies] python = "^3.9" -microsoft-kiota-abstractions = "^0.6.0" -microsoft-kiota-http = ">=0.4.4,<0.6.0" -microsoft-kiota-serialization-json = "^0.3.7" +microsoft-kiota-abstractions = "^0.7.1" +microsoft-kiota-http = "^0.5.0" +microsoft-kiota-serialization-json = "^0.4.0" microsoft-kiota-serialization-text = "^0.2.1" +typing-extensions = "^4.7.1" [tool.poetry.group.test.dependencies] pytest = "^7.3.1"