From ac3fd794f922061653ace78c59fdeccb4327e178 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Sun, 23 Feb 2020 14:19:12 -0800 Subject: [PATCH] Adding missing comma. --- litex_setup.py | 16 ++++++++-------- setup.py | 6 +++++- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/litex_setup.py b/litex_setup.py index 9de1e7494..ffd8fd76f 100755 --- a/litex_setup.py +++ b/litex_setup.py @@ -18,7 +18,7 @@ repos = [ ("migen", ("https://github.com/m-labs/", True, True)), # LiteX SoC builder - ('litex-data-software-compiler_rt', ("https://github.com/litex-hub/", False, True)) + ('litex-data-software-compiler_rt', ("https://github.com/litex-hub/", False, True)), ("litex", ("https://github.com/enjoy-digital/", False, True)), # LiteX cores ecosystem @@ -37,13 +37,13 @@ repos = [ ("litex-boards", ("https://github.com/litex-hub/", False, True)), # Optional LiteX data - ("litex-data-cpu-blackparrot", ("https://github.com/litex-hub/", False, True)) - ("litex-data-cpu-mor1kx", ("https://github.com/litex-hub/", False, True)) - ("litex-data-cpu-lm32", ("https://github.com/litex-hub/", False, True)) - ("litex-data-cpu-microwatt", ("https://github.com/litex-hub/", False, True)) - ("litex-data-cpu-picorv32", ("https://github.com/litex-hub/", False, True)) - ("litex-data-cpu-rocket", ("https://github.com/litex-hub/", False, True)) - ("litex-data-misc-tapcfg", ("https://github.com/litex-hub/", False, True)) + ("litex-data-cpu-blackparrot", ("https://github.com/litex-hub/", False, True)), + ("litex-data-cpu-mor1kx", ("https://github.com/litex-hub/", False, True)), + ("litex-data-cpu-lm32", ("https://github.com/litex-hub/", False, True)), + ("litex-data-cpu-microwatt", ("https://github.com/litex-hub/", False, True)), + ("litex-data-cpu-picorv32", ("https://github.com/litex-hub/", False, True)), + ("litex-data-cpu-rocket", ("https://github.com/litex-hub/", False, True)), + ("litex-data-misc-tapcfg", ("https://github.com/litex-hub/", False, True)), ] repos = OrderedDict(repos) diff --git a/setup.py b/setup.py index 84824a9ad..9c7444270 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,11 @@ setup( test_suite="test", license="BSD", python_requires="~=3.6", - install_requires=["migen", "pyserial", "litex-data-software-compiler_rt"], + install_requires=[ + "migen", + "pyserial", + "litex-data-software-compiler_rt", + ], packages=find_packages(exclude=("test*", "sim*", "doc*")), include_package_data=True, platforms=["Any"],