litex_setup: Switch to manual install for Amaranth/Minerva (No longer supporting Python 3.6).
We could revert when upgrading LiteX python requirement.
This commit is contained in:
parent
d39c3ed626
commit
ed6a6a83a9
|
@ -68,7 +68,6 @@ class GitRepo:
|
|||
git_repos = {
|
||||
# HDL.
|
||||
"migen": GitRepo(url="https://github.com/m-labs/", clone="recursive"),
|
||||
"amaranth": GitRepo(url="https://github.com/amaranth-lang/", branch="main"),
|
||||
|
||||
# LiteX SoC builder
|
||||
"pythondata-software-picolibc": GitRepo(url="https://github.com/litex-hub/", clone="recursive"),
|
||||
|
@ -116,7 +115,6 @@ minimal_repos = ["migen", "litex"]
|
|||
|
||||
# Standard: Migen + LiteX + Cores + Software + Popular CPUs (LM32, Mor1kx, SERV, VexRiscv).
|
||||
standard_repos = list(git_repos.keys())
|
||||
standard_repos.remove("amaranth")
|
||||
standard_repos.remove("pythondata-cpu-picorv32")
|
||||
standard_repos.remove("pythondata-cpu-rocket")
|
||||
standard_repos.remove("pythondata-cpu-minerva")
|
||||
|
|
|
@ -56,10 +56,6 @@ class TestCPU(unittest.TestCase):
|
|||
def test_picorv32(self):
|
||||
self.assertTrue(self.boot_test("picorv32"))
|
||||
|
||||
# FIXME: Wait for Aramanth/Minerva to stabilize.
|
||||
#def test_minerva(self):
|
||||
# self.assertTrue(self.boot_test("minerva"))
|
||||
|
||||
# OpenRISC CPUs.
|
||||
#def test_mor1kx(self):
|
||||
# self.assertTrue(self.boot_test("mor1kx"))
|
||||
|
|
Loading…
Reference in New Issue