Adding missing comma.
authorTim 'mithro' Ansell <me@mith.ro>
Sun, 23 Feb 2020 22:19:12 +0000 (14:19 -0800)
committerTim 'mithro' Ansell <me@mith.ro>
Sun, 12 Apr 2020 01:37:06 +0000 (18:37 -0700)
litex_setup.py
setup.py

index 9de1e7494b971e1f5433c2ab0efea41623b18a5c..ffd8fd76f696bb181afd084020d71a153adce845 100755 (executable)
@@ -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)
 
index 84824a9add8deebff43f80de0a79b348bc42b2a4..9c7444270c82bed5e66373bbbcfd87946ddbf1bb 100755 (executable)
--- 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"],