Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
5a29f3b
FEAT: Enable gRPC usage and update import paths in EDB module
Samuelopez-ansys Apr 21, 2026
bb0d0ec
chore: adding changelog file 7567.added.md [dependabot-skip]
pyansys-ci-bot Apr 21, 2026
4b9046e
Touch extension to trigger tests
Samuelopez-ansys Apr 21, 2026
b836708
fix: correct key reference for stackup layers in EDB information retr…
Samuelopez-ansys Apr 21, 2026
6913ce6
fix: simplify polygon point-in-polygon check in layout design
Samuelopez-ansys Apr 21, 2026
2f4964e
fix: update parameter value extraction to use string representation
Samuelopez-ansys Apr 21, 2026
3e28f5a
fix: update EDB component to be read-only and streamline parameter ex…
Samuelopez-ansys Apr 21, 2026
9533495
fix: update pyedb dependency to point to the latest development version
Samuelopez-ansys Apr 23, 2026
6818f76
Merge branch 'main' into fix/pyedb_grpc_default_tests
Samuelopez-ansys Apr 23, 2026
ba2e3cb
Fix stackup layer references in components_3d.py and post_3dlayout.py
Samuelopez-ansys Apr 23, 2026
eb6c9af
Fix stackup layer references in components_3d.py and post_3dlayout.py
Samuelopez-ansys Apr 23, 2026
a3f6f98
fix: update pyedb dependency to use the main branch
Samuelopez-ansys Apr 23, 2026
566c698
fix: update pyedb dependency to use the main branch
Samuelopez-ansys Apr 25, 2026
4e51fee
Merge branch 'main' into fix/pyedb_grpc_default_tests
Samuelopez-ansys Apr 25, 2026
a09cf72
Update pyedb dependency to version 0.73.0 in pyproject.toml
Samuelopez-ansys Apr 26, 2026
deaab6b
fix: add owner geometry validation for line and circle void creation
Samuelopez-ansys Apr 27, 2026
6caf6ab
fix: update project closing logic in post layout design tests
Samuelopez-ansys Apr 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/7567.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Enable gRPC usage and update import paths in EDB module
4 changes: 2 additions & 2 deletions src/ansys/aedt/core/edb.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def Edb(
>>> app = Edb("/path/to/file/myfile.gds")

"""
from pyedb import Edb as EdbApp
from pyedb.generic.design_types import Edb as EdbApp

if version is not None:
# Clear global state before initialization
Expand Down Expand Up @@ -161,7 +161,7 @@ def Siwave(
specified_version: str | None = None,
) -> "Siwave":
"""Siwave Class."""
from pyedb.siwave import Siwave as app
from pyedb.generic.design_types import Siwave as app
Comment thread
SMoraisAnsys marked this conversation as resolved.

return app(
specified_version=specified_version,
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"local_example_folder": None,
"skip_circuits": False,
"skip_modelithics": True,
"use_pyedb_grpc": False,
"use_pyedb_grpc": True,
}

local_path = Path(__file__).parent
Expand Down
Loading