Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEAT: Grpc transition #782

Closed
wants to merge 285 commits into from
Closed

FEAT: Grpc transition #782

wants to merge 285 commits into from

Conversation

svandenb-dev
Copy link
Collaborator

No description provided.

@svandenb-dev svandenb-dev marked this pull request as draft September 11, 2024 12:32
@github-actions github-actions bot added the maintenance Package and maintenance related label Sep 26, 2024
@github-actions github-actions bot added documentation Improvements or additions to documentation ci/cd labels Dec 13, 2024
@svandenb-dev svandenb-dev changed the title Grpc transition FEAT: Grpc transition Dec 16, 2024
@SMoraisAnsys
Copy link
Collaborator

@svandenb-dev I won't have the time to review the changes with my current work load.
@hui-zhou-a Can you have a look at that ?

Comment on lines +814 to +833
if plot_net and self.net_name:
fig, ax = self._pedb.nets.plot([self.net_name], color_by_net=True, show=False, show_legend=False)
else:
fig = plt.figure(figsize=figsize)
ax = fig.add_subplot(1, 1, 1)
xt, yt = self.points()
p1 = [(i, j) for i, j in zip(xt[::-1], yt[::-1])]

holes = []
for void in self.voids:
xvt, yvt = void.points(arc_segments=3)
h1 = [(i, j) for i, j in zip(xvt, yvt)]
holes.append(h1)
poly = Polygon(p1, holes)
plot_polygon(poly, add_points=False, color=(1, 0, 0))
ax.grid(False)
ax.set_axis_off()
# Hide axes ticks
ax.set_xticks([])
ax.set_yticks([])
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ax is set in nets.plot() in line 815. Is it correct to set it again from 829 to 833?

@hui-zhou-a
Copy link
Collaborator

@svandenb-dev I won't have the time to review the changes with my current work load. @hui-zhou-a Can you have a look at that ?

@svandenb-dev is this PR ready for review? Some tests are failing.

@svandenb-dev
Copy link
Collaborator Author

@svandenb-dev I won't have the time to review the changes with my current work load. @hui-zhou-a Can you have a look at that ?

@svandenb-dev is this PR ready for review? Some tests are failing.

No it's not yet ready. I will remove the config file test for now and will work on fixing failing tests.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ci/cd dependencies Related with project dependencies documentation Improvements or additions to documentation grpc-transition Changes that need to be included in gRPC transition maintenance Package and maintenance related testing Anything related to testing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ROADMAP: PyEDB gRPC migration
5 participants