mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
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
2 changed files with 0 additions and 6 deletions
|
@ -68,7 +68,6 @@ class GitRepo:
|
||||||
git_repos = {
|
git_repos = {
|
||||||
# HDL.
|
# HDL.
|
||||||
"migen": GitRepo(url="https://github.com/m-labs/", clone="recursive"),
|
"migen": GitRepo(url="https://github.com/m-labs/", clone="recursive"),
|
||||||
"amaranth": GitRepo(url="https://github.com/amaranth-lang/", branch="main"),
|
|
||||||
|
|
||||||
# LiteX SoC builder
|
# LiteX SoC builder
|
||||||
"pythondata-software-picolibc": GitRepo(url="https://github.com/litex-hub/", clone="recursive"),
|
"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: Migen + LiteX + Cores + Software + Popular CPUs (LM32, Mor1kx, SERV, VexRiscv).
|
||||||
standard_repos = list(git_repos.keys())
|
standard_repos = list(git_repos.keys())
|
||||||
standard_repos.remove("amaranth")
|
|
||||||
standard_repos.remove("pythondata-cpu-picorv32")
|
standard_repos.remove("pythondata-cpu-picorv32")
|
||||||
standard_repos.remove("pythondata-cpu-rocket")
|
standard_repos.remove("pythondata-cpu-rocket")
|
||||||
standard_repos.remove("pythondata-cpu-minerva")
|
standard_repos.remove("pythondata-cpu-minerva")
|
||||||
|
|
|
@ -56,10 +56,6 @@ class TestCPU(unittest.TestCase):
|
||||||
def test_picorv32(self):
|
def test_picorv32(self):
|
||||||
self.assertTrue(self.boot_test("picorv32"))
|
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.
|
# OpenRISC CPUs.
|
||||||
#def test_mor1kx(self):
|
#def test_mor1kx(self):
|
||||||
# self.assertTrue(self.boot_test("mor1kx"))
|
# self.assertTrue(self.boot_test("mor1kx"))
|
||||||
|
|
Loading…
Reference in a new issue