From 21a0a98e65f7198cbf3998f01c3e145875b6ebdf Mon Sep 17 00:00:00 2001 From: Bharat Chauhan Date: Sun, 3 Dec 2023 17:37:58 +0530 Subject: [PATCH] Update stripe-python dependency to 6.2.0 - Pin typing_extensions version to >= 4.0.0 --- poetry.lock | 16 ++++++---------- pyproject.toml | 3 ++- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/poetry.lock b/poetry.lock index f750238..beba1cc 100644 --- a/poetry.lock +++ b/poetry.lock @@ -338,7 +338,7 @@ pbr = ">=2.0.0,<2.1.0 || >2.1.0" [[package]] name = "stripe" -version = "6.1.0" +version = "6.2.0" description = "Python bindings for the Stripe API" category = "main" optional = false @@ -377,11 +377,11 @@ python-versions = "*" [[package]] name = "typing-extensions" -version = "3.10.0.0" -description = "Backported and Experimental Type Hints for Python 3.5+" +version = "4.1.1" +description = "Backported and Experimental Type Hints for Python 3.6+" category = "main" optional = false -python-versions = "*" +python-versions = ">=3.6" [[package]] name = "urllib3" @@ -411,7 +411,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes [metadata] lock-version = "1.1" python-versions = "^3.6" -content-hash = "1b0e9efb36cc208709d7b42413b2b16e389519d28a4029bf8bbd3da490f83989" +content-hash = "da0f43d599eb42f604c5d1e5549b22104512b58ceef6f01ffa8659b29f24d9fa" [metadata.files] atomicwrites = [ @@ -602,11 +602,7 @@ typed-ast = [ {file = "typed_ast-1.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:9c6d1a54552b5330bc657b7ef0eae25d00ba7ffe85d9ea8ae6540d2197a3788c"}, {file = "typed_ast-1.4.3.tar.gz", hash = "sha256:fb1bbeac803adea29cedd70781399c99138358c26d05fcbd23c13016b7f5ec65"}, ] -typing-extensions = [ - {file = "typing_extensions-3.10.0.0-py2-none-any.whl", hash = "sha256:0ac0f89795dd19de6b97debb0c6af1c70987fd80a2d62d1958f7e56fcc31b497"}, - {file = "typing_extensions-3.10.0.0-py3-none-any.whl", hash = "sha256:779383f6086d90c99ae41cf0ff39aac8a7937a9283ce0a414e5dd782f4c94a84"}, - {file = "typing_extensions-3.10.0.0.tar.gz", hash = "sha256:50b6f157849174217d0656f99dc82fe932884fb250826c18350e159ec6cdf342"}, -] +typing-extensions = [] urllib3 = [ {file = "urllib3-1.26.6-py2.py3-none-any.whl", hash = "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4"}, {file = "urllib3-1.26.6.tar.gz", hash = "sha256:f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f"}, diff --git a/pyproject.toml b/pyproject.toml index b004784..ebf11ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ keywords = ["stripe", "async", "asynchronous", "wrapper"] [tool.poetry.dependencies] python = "^3.6" -stripe = "6.1.0" +stripe = "6.2.0" tornado = ">=5.1" [tool.poetry.dev-dependencies] @@ -32,6 +32,7 @@ pytest-mock = "^3.6.1" pytest-asyncio = "^0.15.1" py = "^1.11.0" PyYAML = "^6" +typing_extensions = ">=4.0.0" [build-system] requires = ["poetry-core>=1.0.0"]