setup.py: Switch minimum Python version to 3.7 (To allow more than 255 arguments in functions).

This commit is contained in:
Florent Kermarrec 2023-12-19 10:30:04 +01:00
parent e9dac1e460
commit 4cfa4defd2
1 changed files with 1 additions and 1 deletions

View File

@ -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*']),