From f02e32dc3a129eb735aabf507fd6c0c4c9627d72 Mon Sep 17 00:00:00 2001 From: David Lord Date: Sat, 13 Apr 2024 10:49:06 -0700 Subject: [PATCH] drop support for Python 3.7 --- CHANGES.rst | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 70a3c42..b1b4493 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,7 @@ Version 2.2.0 Unreleased +- Drop support for Python 3.7. :pr:`372` - Use modern packaging metadata with ``pyproject.toml`` instead of ``setup.cfg``. :pr:`326` - Use ``flit_core`` instead of ``setuptools`` as build backend. diff --git a/pyproject.toml b/pyproject.toml index f753a01..966c862 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ classifiers = [ "Programming Language :: Python", "Typing :: Typed", ] -requires-python = ">=3.7" +requires-python = ">=3.8" [project.urls] Donate = "https://palletsprojects.com/donate"