From 308833795e2a798fa8b796994e8b3aab433edd74 Mon Sep 17 00:00:00 2001 From: Raphael Krupinski <10319569-mattesilver@users.noreply.gitlab.com> Date: Fri, 12 Jan 2024 15:07:33 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20httpx.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- poetry.lock | 24 ++++++++++++------------ pyproject.toml | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/poetry.lock b/poetry.lock index 4e7cc81..a96d167 100644 --- a/poetry.lock +++ b/poetry.lock @@ -196,13 +196,13 @@ trio = ["trio (>=0.22.0,<0.23.0)"] [[package]] name = "httpx" -version = "0.25.2" +version = "0.26.0" description = "The next generation HTTP client." optional = false python-versions = ">=3.8" files = [ - {file = "httpx-0.25.2-py3-none-any.whl", hash = "sha256:a05d3d052d9b2dfce0e3896636467f8a5342fb2b902c819428e1ac65413ca118"}, - {file = "httpx-0.25.2.tar.gz", hash = "sha256:8b8fcaa0c8ea7b05edd69a094e63a2094c4efcb48129fb757361bc423c0ad9e8"}, + {file = "httpx-0.26.0-py3-none-any.whl", hash = "sha256:8915f5a3627c4d47b73e8202457cb28f1266982d1159bd5779d86a80c0eab1cd"}, + {file = "httpx-0.26.0.tar.gz", hash = "sha256:451b55c30d5185ea6b23c2c793abf9bb237d2a7dfb901ced6ff69ad37ec1dfaf"}, ] [package.dependencies] @@ -221,20 +221,20 @@ socks = ["socksio (==1.*)"] [[package]] name = "httpx-auth" -version = "0.18.0" +version = "0.19.0" description = "Authentication for HTTPX" optional = false python-versions = ">=3.9" files = [ - {file = "httpx_auth-0.18.0-py3-none-any.whl", hash = "sha256:e0b3c3439d8de6c4ff9e74787f5cd99575fab5085f3616a3d03228ca03ec213b"}, - {file = "httpx_auth-0.18.0.tar.gz", hash = "sha256:22826b4b9c3d76523e9f4797769cafcc46f0d2e02f5e56856d5d996e7b925654"}, + {file = "httpx_auth-0.19.0-py3-none-any.whl", hash = "sha256:6735fff47571fddb25cbcadd8f012b09fe27a171ba114001c82bfb536789a28f"}, + {file = "httpx_auth-0.19.0.tar.gz", hash = "sha256:b834fd7e257d7d389054fec9a48a9cdc646c9aa90c519f9b02e4b0a95afe0c19"}, ] [package.dependencies] -httpx = "==0.25.*" +httpx = "==0.26.*" [package.extras] -testing = ["pyjwt (==2.*)", "pytest-cov (==4.*)", "pytest-httpx (==0.25.*)"] +testing = ["pyjwt (==2.*)", "pytest-cov (==4.*)", "pytest-httpx (==0.28.*)"] [[package]] name = "hyperframe" @@ -607,13 +607,13 @@ testutils = ["gitpython (>3)"] [[package]] name = "pytest" -version = "7.4.3" +version = "7.4.4" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.4.3-py3-none-any.whl", hash = "sha256:0d009c083ea859a71b76adf7c1d502e4bc170b80a8ef002da5806527b9591fac"}, - {file = "pytest-7.4.3.tar.gz", hash = "sha256:d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5"}, + {file = "pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8"}, + {file = "pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280"}, ] [package.dependencies] @@ -782,4 +782,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "4e280526d4e4cb02e699563a7f7a0d9af54af6a7b6d8fe0ac1cea4e64fa9f42d" +content-hash = "65613bfc167a6570cf65c3c2de5f1e5ea3c04c29ad176ef548563af04c5afc84" diff --git a/pyproject.toml b/pyproject.toml index bdf450c..0b75700 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,8 +11,8 @@ repository = "https://github.com/python-lapidary/lapidary" [tool.poetry.dependencies] python = "^3.9" -httpx = {extras = ["http2"], version = "^0.25.0"} -httpx-auth = "^0.18.0" +httpx = {extras = ["http2"], version = "^0.26.0"} +httpx-auth = "^0.19.0" pydantic = {extras = ["email"], version = "^2.5.2"} python-mimeparse = "^1.6.0" typing-extensions = { python = "<3.12", version = "^4.9.0" }