From b061e12030f0d77023884364265f932c58c0a4a4 Mon Sep 17 00:00:00 2001 From: Matt Joyce Date: Sun, 26 May 2024 11:37:47 +1000 Subject: [PATCH] added python versions requirement this is inline with requests module, a critical dependency --- apps/python-sdk/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/python-sdk/setup.py b/apps/python-sdk/setup.py index f6b798d..e7139ce 100644 --- a/apps/python-sdk/setup.py +++ b/apps/python-sdk/setup.py @@ -18,6 +18,7 @@ setup( install_requires=[ "requests", ], + python_requires='>=3.8', classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment",