Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: YoWASP/yosys
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 33f719139a86
Choose a base ref
...
head repository: YoWASP/yosys
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5b8037b4377a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 7, 2021

  1. Prepend YoWASP Python module path to sys.path, not append.

    Otherwise a wrong version of the supporting modules can be picked up
    if YoWASP Yosys is installed concurrently with a native one.
    whitequark committed Oct 7, 2021
    Copy the full SHA
    5b8037b View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pypi/yowasp_yosys/__init__.py
4 changes: 2 additions & 2 deletions pypi/yowasp_yosys/__init__.py
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ def _run_yosys_argv():

def _run_yosys_smtbmc_argv():
prefix = importlib_resources.files(__package__)
sys.path.append(str(prefix / "share" / "python3"))
sys.path[0:0] = [str(prefix / "share" / "python3")]
smtbmc_py = prefix / "smtbmc.py"
with open(smtbmc_py) as f:
globals = {}
@@ -90,7 +90,7 @@ def _run_yosys_smtbmc_argv():

def _run_sby_argv():
prefix = importlib_resources.files(__package__)
sys.path.append(str(prefix / "share" / "python3"))
sys.path[0:0] = [str(prefix / "share" / "python3")]
sby_py = prefix / "sby.py"
with open(sby_py) as f:
globals = {}