setup.py: Switch minimum Python version to 3.7 (To allow more than 255 arguments in functions).
This commit is contained in:
parent
e9dac1e460
commit
4cfa4defd2
2
setup.py
2
setup.py
|
@ -20,7 +20,7 @@ setup(
|
||||||
download_url = "https://github.com/litex-hub/litex-boards",
|
download_url = "https://github.com/litex-hub/litex-boards",
|
||||||
test_suite = "test",
|
test_suite = "test",
|
||||||
license = "BSD",
|
license = "BSD",
|
||||||
python_requires = "~=3.6",
|
python_requires = "~=3.7",
|
||||||
install_requires = ["litex"],
|
install_requires = ["litex"],
|
||||||
include_package_data = True,
|
include_package_data = True,
|
||||||
packages = find_packages(exclude=['test*']),
|
packages = find_packages(exclude=['test*']),
|
||||||
|
|
Loading…
Reference in New Issue