From f2707ff93ce512393d5d893f05c98e235a4df99e Mon Sep 17 00:00:00 2001 From: rwxd Date: Sat, 11 Mar 2023 13:03:32 +0100 Subject: [PATCH] fix: we need python 3.11 because of datetime.fromisoformat https://docs.python.org/3.11/library/datetime.html#datetime.datetime.fromisoformat > Changed in version 3.11: Previously, this method only supported formats that could be emitted by date.isoformat() or datetime.isoformat(). --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index bfb68ab..54a86a2 100644 --- a/setup.py +++ b/setup.py @@ -32,8 +32,6 @@ packages=['readwise'], install_requires=required, classifiers=[ - 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', ], )