From 1e76efa27d95d5fe636cca728be31fdd0ad040d5 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Tue, 29 Jul 2025 09:06:50 +0200 Subject: [PATCH] Upgrade urwid and require python 3.9 Because urwid3 required python 3.9, and 3.8 is EOL. --- .vermin | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.vermin b/.vermin index 5fc8423..02e94d2 100644 --- a/.vermin +++ b/.vermin @@ -1,4 +1,4 @@ [vermin] only_show_violations = yes show_tips = no -targets = 3.8 \ No newline at end of file +targets = 3.9- \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index fef11a0..ee87029 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [{ name="Ivan Habunek", email="ivan@habunek.com" }] description = "Mastodon CLI client" readme = "README.rst" license = "GPL-3.0-only" -requires-python = ">=3.8" +requires-python = ">=3.9" dynamic = ["version"] classifiers = [ @@ -24,7 +24,7 @@ dependencies = [ "python-dateutil>=2.8.1,<3.0", "requests>=2.13,<3.0", "tomlkit>=0.10.0,<1.0", - "urwid>=2.0.0,<3.0", + "urwid>3.0.0,<4.0.0", "wcwidth>=0.1.7", ]