Skip to content

Commit

Permalink
update name of pdk
Browse files Browse the repository at this point in the history
  • Loading branch information
joamatab committed Aug 20, 2023
1 parent a2e66c1 commit a5341c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gvtt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

LAYER_VIEWS = None # LayerViews(filepath=PATH.klayout_yaml)

pdk = Pdk(
PDK = Pdk(
name="VTT-3umSOI",
cells=cells,
cross_sections=cross_sections,
Expand All @@ -65,11 +65,11 @@
{"cross_section": "strip", "settings": {"width": 3.0}},
]

pdk.activate()
PDK.activate()
__version__ = "0.0.2"

if __name__ == "__main__":
# layer_views = LayerViews(filepath=PATH.lyp_yaml)
# layer_views.to_lyp(PATH.lyp)

print(pdk.name)
print(PDK.name)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ classifiers = [
"Operating System :: OS Independent"
]
dependencies = [
"gdsfactory[cad]>=7.1.1,<7.2.0"
"gdsfactory[cad]==7.3.1"
]
description = "gdsfactory VTT PDK"
keywords = ["python"]
Expand Down

0 comments on commit a5341c5

Please sign in to comment.