From 3902962aac9e478455ee8ef5b5ccde6a8910341d Mon Sep 17 00:00:00 2001 From: mbarkhau Date: Fri, 10 Jul 2020 01:07:16 +0000 Subject: [PATCH] Python 2.7 supported dropped in 1.4.0 (CHANGES.md) (#1295) With revision 02eb983e90aeb8e878e5c0f9989b7b701b8ad21a the `python_requires` was set to `3.4` --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index f3e98c7..0f23265 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -19,6 +19,7 @@ * When a job is scheduled, always add queue name to a set containing active RQ queue names. Thanks @mdawar! * Added `--sentry-ca-certs` and `--sentry-debug` parameters to `rq worker` CLI. Thanks @kichawa! * Jobs cleaned up by `StartedJobRegistry` are given an exception info. Thanks @selwin! +* Python 2.7 is no longer supported. Thanks @selwin! ### RQ 1.3.0 (2020-03-09) * Support for infinite job timeout. Thanks @theY4Kman!