From b79c109c00f75d2d047758d558af17cf8e956061 Mon Sep 17 00:00:00 2001 From: Hans Ole Hatzel Date: Fri, 13 Sep 2024 11:26:50 +0200 Subject: [PATCH] Ensure setup.py compatiblity with recent Python versions. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 30ac5e3..48aa00f 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,9 @@ packages=setuptools.find_packages(), description="Load CATMA annotations from their Git data", url="https://github.com/forTEXT/gitma", - python_requires="==3.9.*", + python_requires=">3.9", install_requires=[ - "cvxopt==1.2.7", + "cvxopt", "jupyter", "networkx", "nltk",