From ab8d342032ee8733b2de8257a24649a327137c1b Mon Sep 17 00:00:00 2001 From: LilSpazJoekp <15524072+LilSpazJoekp@users.noreply.github.com> Date: Sun, 1 Oct 2023 14:08:24 -0500 Subject: [PATCH] Drop support for Python 3.7 --- CHANGES.rst | 1 + pyproject.toml | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 101e93b..0177221 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,7 @@ Unreleased - Drop support for Python 3.6, which is end-of-life on 2021-12-23. - Updated rate limit algorithm to better handle reddit's new rate limits. +- Drop support for Python 3.7, which is end-of-life on 2023-06-27. 2.3.0 (2021-07-26) ------------------ diff --git a/pyproject.toml b/pyproject.toml index 2325a7a..7549868 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,6 @@ classifiers = [ "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -28,7 +27,7 @@ maintainers = [ {name = "Bryce Boe", email = "bbzbryce@gmail.com"} ] name = "prawcore" -requires-python = "~=3.7" +requires-python = "~=3.8" [project.optional-dependencies] ci = ["coveralls"] @@ -60,7 +59,7 @@ profile = 'black' skip_glob = '.venv*' [tool.ruff] -target-version = "py37" +target-version = "py38" include = [ "prawcore/*.py" ]