devlab-fpga 0.1.4__tar.gz → 0.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {devlab_fpga-0.1.4/devlab_fpga.egg-info → devlab_fpga-0.1.5}/PKG-INFO +1 -1
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab/__init__.py +1 -1
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab/toolchain.py +5 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5/devlab_fpga.egg-info}/PKG-INFO +1 -1
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/pyproject.toml +1 -1
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/LICENSE +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/MANIFEST.in +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/README.md +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab/__main__.py +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab/cli.py +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab/errors.py +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab/platforms.py +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab/project.py +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab_fpga.egg-info/SOURCES.txt +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab_fpga.egg-info/dependency_links.txt +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab_fpga.egg-info/entry_points.txt +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab_fpga.egg-info/requires.txt +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/devlab_fpga.egg-info/top_level.txt +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/setup.cfg +0 -0
- {devlab_fpga-0.1.4 → devlab_fpga-0.1.5}/setup.py +0 -0
|
@@ -125,6 +125,11 @@ def env_with_toolchain(path: Path | None = None) -> dict[str, str]:
|
|
|
125
125
|
root = _toolchain_root(path)
|
|
126
126
|
env = os.environ.copy()
|
|
127
127
|
tool_dirs = [*bin_dirs(path), root / "py3bin"]
|
|
128
|
+
|
|
129
|
+
# On Windows, add lib directory to PATH for DLL resolution
|
|
130
|
+
if sys.platform.startswith("win"):
|
|
131
|
+
tool_dirs.append(root / "lib")
|
|
132
|
+
|
|
128
133
|
binary_dirs = os.pathsep.join(str(candidate) for candidate in tool_dirs)
|
|
129
134
|
env["PATH"] = binary_dirs + os.pathsep + env.get("PATH", "")
|
|
130
135
|
env["VIRTUAL_ENV"] = str(root)
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "devlab-fpga"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.5"
|
|
8
8
|
description = "FPGA development helper for installing OSS CAD Suite and running build/flash flows."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|