From 678ab0cac12dc79d0b4d71d233ee0e5ff406cf02 Mon Sep 17 00:00:00 2001 From: Luke Gloege Date: Sat, 1 Apr 2023 16:55:32 -0400 Subject: [PATCH] fix: require >=py37 --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 370d1d9..409546c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,6 +13,7 @@ platforms = unix, linux, osx, cygwin, win32 classifiers = Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only + Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 @@ -23,7 +24,7 @@ packages = install_requires = pandas>1.5 requests>2.28 -python_requires = >=3.8 +python_requires = >=3.7 package_dir = =src zip_safe = no