Skip to content

Commit

Permalink
Merge pull request #1616 from lnis-uofu/xt_black
Browse files Browse the repository at this point in the history
update black version from 20.8b1 to 24.3.0
  • Loading branch information
tangxifan authored Apr 10, 2024
2 parents c5db01f + c63cee4 commit b7c2e18
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions openfpga_flow/scripts/arch_file_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#####################################################################
logging.basicConfig(format="%(levelname)s: %(message)s", level=logging.INFO)


#####################################################################
# Upgrade an architecture XML file from version 1.1 syntax to version 1.2
# Change rules:
Expand Down
1 change: 1 addition & 0 deletions openfpga_flow/scripts/io_sequence_visualizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
Author: Ganesh Gore
"""

import math
import svgwrite
from svgwrite.container import Group
Expand Down
8 changes: 5 additions & 3 deletions openfpga_flow/scripts/run_fpga_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,9 +674,11 @@ def create_yosys_params():
ys_params["READ_HDL_FILE"] += " ".join(
[
"verific",
"-L " + ys_params["VERIFIC_SEARCH_LIB"]
if "VERIFIC_SEARCH_LIB" in ys_params
else "",
(
"-L " + ys_params["VERIFIC_SEARCH_LIB"]
if "VERIFIC_SEARCH_LIB" in ys_params
else ""
),
standard,
" ".join([shlex.quote(src) for src in sources]),
"\n",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ pyverilog

# Python linter and formatter
click==8.0.2 # Our version of black needs an older version of click (https://stackoverflow.com/questions/71673404/importerror-cannot-import-name-unicodefun-from-click)
black==20.8b1
black==24.3.0
pylint==2.7.4

0 comments on commit b7c2e18

Please sign in to comment.