From 20c61e7baae32b62ad1719d7bea6e6d276802d96 Mon Sep 17 00:00:00 2001 From: Saleh Mir Date: Fri, 3 Jan 2025 18:53:30 +0330 Subject: [PATCH] chore(setup): update python version requirement from 3.8 to 3.9 - Increased the minimum Python version requirement in setup.py to ensure compatibility with newer features and improvements. - This change helps maintain the project's dependency on more recent Python versions, enhancing performance and security. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8e57f48d5..2d8671b9f 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires='>=3.8', + python_requires='>=3.9', include_package_data=True, package_data={ '': ['*.dll', '*.dylib', '*.so', '*.json'],