From 048c42820c8b934d5dc60660eab075de009d8d4d Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 19 Dec 2023 10:32:12 +0100 Subject: [PATCH] setup.py: Switch minimum Python version to 3.7 (To allow more than 255 arguments in functions). --- CHANGES.md | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 61d175b20..82b322eae 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -40,7 +40,8 @@ [> Changed ---------- - - build/osfpga: Removed initial support (would need feedbacks/updates). + - build/osfpga : Removed initial support (would need feedbacks/updates). + - python3 : Updated minimum python3 version to 3.7 (To allow more than 255 arguments in functions). [> 2023.08, released on September 14th 2023 ------------------------------------------- diff --git a/setup.py b/setup.py index 696177dc5..c1d57adea 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( download_url = "https://github.com/enjoy-digital/litex", test_suite = "test", license = "BSD", - python_requires = "~=3.6", + python_requires = "~=3.7", install_requires = [ "migen", "packaging",