diff --git a/{{cookiecutter.project_slug}}/backend/poetry.lock b/{{cookiecutter.project_slug}}/backend/poetry.lock index c9ab5ee4..6fd7504b 100644 --- a/{{cookiecutter.project_slug}}/backend/poetry.lock +++ b/{{cookiecutter.project_slug}}/backend/poetry.lock @@ -779,49 +779,50 @@ files = [ [[package]] name = "httpcore" -version = "0.16.3" +version = "1.0.7" description = "A minimal low-level HTTP client." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" groups = ["dev"] files = [ - {file = "httpcore-0.16.3-py3-none-any.whl", hash = "sha256:da1fb708784a938aa084bde4feb8317056c55037247c787bd7e19eb2c2949dc0"}, - {file = "httpcore-0.16.3.tar.gz", hash = "sha256:c5d6f04e2fc530f39e0c077e6a30caa53f1451096120f1f38b954afd0b17c0cb"}, + {file = "httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"}, + {file = "httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c"}, ] [package.dependencies] -anyio = ">=3.0,<5.0" certifi = "*" h11 = ">=0.13,<0.15" -sniffio = "==1.*" [package.extras] +asyncio = ["anyio (>=4.0,<5.0)"] http2 = ["h2 (>=3,<5)"] socks = ["socksio (==1.*)"] +trio = ["trio (>=0.22.0,<1.0)"] [[package]] name = "httpx" -version = "0.24.1" +version = "0.28.1" description = "The next generation HTTP client." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" groups = ["dev"] files = [ - {file = "httpx-0.24.1-py3-none-any.whl", hash = "sha256:06781eb9ac53cde990577af654bd990a4949de37a28bdb4a230d434f3a30b9bd"}, - {file = "httpx-0.24.1.tar.gz", hash = "sha256:5853a43053df830c20f8110c5e69fe44d035d850b2dfe795e196f00fdb774bdd"}, + {file = "httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"}, + {file = "httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc"}, ] [package.dependencies] +anyio = "*" certifi = "*" -httpcore = ">=0.15.0,<0.18.0" +httpcore = "==1.*" idna = "*" -sniffio = "*" [package.extras] brotli = ["brotli ; platform_python_implementation == \"CPython\"", "brotlicffi ; platform_python_implementation != \"CPython\""] cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] http2 = ["h2 (>=3,<5)"] socks = ["socksio (==1.*)"] +zstd = ["zstandard (>=0.18.0)"] [[package]] name = "idna" @@ -1676,4 +1677,4 @@ files = [ [metadata] lock-version = "2.1" python-versions = "^3.11" -content-hash = "df563e90fff25dbd6acc43ed246987c25870987cca8264f445e20698bccd49ee" +content-hash = "9d2ebe3ea26566a91b3fd979f8530aec657e1dea107f6aba594863a0fc13934c" diff --git a/{{cookiecutter.project_slug}}/backend/pyproject.toml b/{{cookiecutter.project_slug}}/backend/pyproject.toml index 6c6ba99d..6ada4c7c 100644 --- a/{{cookiecutter.project_slug}}/backend/pyproject.toml +++ b/{{cookiecutter.project_slug}}/backend/pyproject.toml @@ -22,7 +22,7 @@ black = "^23.10.1" pytest = "^7.4.3" ipython = "^8.16.1" pytest-cov = "^4.1.0" -httpx = "^0.24.1" +httpx = "^0.28.1" pytest-asyncio = "^0.21.1" [build-system]