From 4cfa4defd2e130e22d08abdac41c7ebaeeb8bb03 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 19 Dec 2023 10:30:04 +0100 Subject: [PATCH] setup.py: Switch minimum Python version to 3.7 (To allow more than 255 arguments in functions). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5b7b307..2533efe 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( download_url = "https://github.com/litex-hub/litex-boards", test_suite = "test", license = "BSD", - python_requires = "~=3.6", + python_requires = "~=3.7", install_requires = ["litex"], include_package_data = True, packages = find_packages(exclude=['test*']),