setup.py: Switch minimum Python version to 3.7 (To allow more than 255 arguments in functions).
This commit is contained in:
parent
33c07a094e
commit
048c42820c
|
@ -40,7 +40,8 @@
|
||||||
|
|
||||||
[> Changed
|
[> 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
|
[> 2023.08, released on September 14th 2023
|
||||||
-------------------------------------------
|
-------------------------------------------
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -20,7 +20,7 @@ setup(
|
||||||
download_url = "https://github.com/enjoy-digital/litex",
|
download_url = "https://github.com/enjoy-digital/litex",
|
||||||
test_suite = "test",
|
test_suite = "test",
|
||||||
license = "BSD",
|
license = "BSD",
|
||||||
python_requires = "~=3.6",
|
python_requires = "~=3.7",
|
||||||
install_requires = [
|
install_requires = [
|
||||||
"migen",
|
"migen",
|
||||||
"packaging",
|
"packaging",
|
||||||
|
|
Loading…
Reference in New Issue