From d4997a10a261d82808477f2846c0908174d55ff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20PEREGI?= Date: Sat, 13 May 2023 20:33:13 +0200 Subject: [PATCH] Fix required Python version --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1a9ee92..64d4f6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,13 +10,14 @@ authors = [ ] description = "OS-independent wrapper for shlex and mslex" readme = "README.md" -requires-python = ">=3.5" +# mslex is supposed to support >=3.5, but it has an accidental f-string, making it unusable on 3.5 +# see https://github.com/smoofra/mslex/issues/1 +requires-python = ">=3.6" dependencies = [ "mslex", ] classifiers = [ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8",