From 51f93791b207996a123ee449d8a9114ddac982b7 Mon Sep 17 00:00:00 2001 From: donbarbos Date: Sat, 9 May 2026 09:11:41 +0400 Subject: [PATCH] [gunicorn] Fully remove eventlet support Looks like we already don't need this in the `stubtest-dependencies` list anymore. See: https://github.com/python/typeshed/pull/15723 --- stubs/gunicorn/METADATA.toml | 1 - stubs/gunicorn/gunicorn/workers/__init__.pyi | 1 - 2 files changed, 2 deletions(-) diff --git a/stubs/gunicorn/METADATA.toml b/stubs/gunicorn/METADATA.toml index f080ece8c618..3e4de3113f9f 100644 --- a/stubs/gunicorn/METADATA.toml +++ b/stubs/gunicorn/METADATA.toml @@ -7,7 +7,6 @@ supported-platforms = ["linux", "darwin"] ci-platforms = ["linux", "darwin"] stubtest-dependencies = [ "gevent>=1.4.0", - "eventlet>=0.24.1,!=0.36.0", "tornado>=0.2", "setproctitle", "PasteDeploy", diff --git a/stubs/gunicorn/gunicorn/workers/__init__.pyi b/stubs/gunicorn/gunicorn/workers/__init__.pyi index 3976a8727e97..d687a67ab557 100644 --- a/stubs/gunicorn/gunicorn/workers/__init__.pyi +++ b/stubs/gunicorn/gunicorn/workers/__init__.pyi @@ -3,7 +3,6 @@ from typing import TypedDict, type_check_only @type_check_only class _SupportedWorkers(TypedDict): sync: str - eventlet: str # deprecated: will be removed in 26.0 gevent: str gevent_wsgi: str gevent_pywsgi: str