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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devlab-fpga
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: FPGA development helper for installing OSS CAD Suite and running build/flash flows.
5
5
  Author-email: Mrju10 <name@email.com>
6
6
  License: MIT
@@ -2,4 +2,4 @@
2
2
 
3
3
  __all__ = ["__version__"]
4
4
 
5
- __version__ = "0.1.4"
5
+ __version__ = "0.1.5"
@@ -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)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devlab-fpga
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: FPGA development helper for installing OSS CAD Suite and running build/flash flows.
5
5
  Author-email: Mrju10 <name@email.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "devlab-fpga"
7
- version = "0.1.4"
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