From ab0c731343ae39762fe6a30478a0f101088bb5eb Mon Sep 17 00:00:00 2001 From: Charmander <~@charmander.me> Date: Tue, 20 Aug 2024 21:33:21 -0700 Subject: [PATCH] Upgrade Gunicorn to version 23.0.0 (#1421) Might also fix some sporadic issues with stuck workers and temporary file leaks? --- poetry.lock | 8 ++++---- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/poetry.lock b/poetry.lock index b932f0622..96e65b505 100644 --- a/poetry.lock +++ b/poetry.lock @@ -517,13 +517,13 @@ test = ["objgraph", "psutil"] [[package]] name = "gunicorn" -version = "22.0.0" +version = "23.0.0" description = "WSGI HTTP Server for UNIX" optional = false python-versions = ">=3.7" files = [ - {file = "gunicorn-22.0.0-py3-none-any.whl", hash = "sha256:350679f91b24062c86e386e198a15438d53a7a8207235a78ba1b53df4c4378d9"}, - {file = "gunicorn-22.0.0.tar.gz", hash = "sha256:4a0b436239ff76fb33f11c07a16482c521a7e09c1ce3cc293c2330afe01bec63"}, + {file = "gunicorn-23.0.0-py3-none-any.whl", hash = "sha256:ec400d38950de4dfd418cff8328b2c8faed0edb0d517d3394e457c317908ca4d"}, + {file = "gunicorn-23.0.0.tar.gz", hash = "sha256:f014447a0101dc57e294f6c18ca6b40227a4c90e9bdb586042628030cba004ec"}, ] [package.dependencies] @@ -1529,4 +1529,4 @@ testing = ["coverage (>=5.0.3)", "zope.event", "zope.testing"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "3e84ea66f47b1f4d02186c6447107f07a318d35d3d2f3e10e72f3840c43115fe" +content-hash = "491f09f6654baaabc184aa781702b79a23dc3c8d88186ac2376102cb4abaf3e7" diff --git a/pyproject.toml b/pyproject.toml index fd29404a7..a61a19ed1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [tool.poetry.dependencies] python = "^3.10" -gunicorn = "22.0.0" +gunicorn = "23.0.0" multipart = "0.2.4" web-py = "0.51" requests = "^2.31.0"