setup.py: Switch minimum Python version to 3.7 (To allow more than 255 arguments in functions).
This commit is contained in:
parent
6ec993650c
commit
d3a05ae631
2
setup.py
2
setup.py
|
@ -20,7 +20,7 @@ setup(
|
|||
download_url = "https://github.com/enjoy-digital/liteeth",
|
||||
test_suite = "test",
|
||||
license = "BSD",
|
||||
python_requires = "~=3.6",
|
||||
python_requires = "~=3.7",
|
||||
install_requires = ["pyyaml", "litex", "liteiclink"],
|
||||
extras_require = {"develop": ["setuptools"]},
|
||||
packages = find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
|
||||
|
|
Loading…
Reference in New Issue