Skip to content

Commit

Permalink
Since gdsfactory 6.34.0 renamed gdsfactory.types -> gdsfactory.typings
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjankoehler committed Jun 7, 2024
1 parent e4816ab commit 36922e0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sky130_tech/tech/sky130/pymacros/cells/draw_fet.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import numpy as np

import gdsfactory as gf
from gdsfactory.types import Float2, LayerSpec
from gdsfactory.typings import Float2, LayerSpec
from .via_generator import *
from .layers_def import *

Expand Down
2 changes: 1 addition & 1 deletion sky130_tech/tech/sky130/pymacros/cells/layers_def.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
########################################################################################################################

from importlib.util import LazyLoader
from gdsfactory.types import LayerSpec
from gdsfactory.typings import LayerSpec

diff_layer : LayerSpec = (65,20)
diff_lbl : LayerSpec = (65,6)
Expand Down
2 changes: 1 addition & 1 deletion sky130_tech/tech/sky130/pymacros/cells/res_metal_child.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
m5_layer,
)
from .parent_res import draw_res
from gdsfactory.types import LayerSpec
from gdsfactory.typings import LayerSpec

# ########constants##########
# ONLY FOR GENERIC RES
Expand Down
2 changes: 1 addition & 1 deletion sky130_tech/tech/sky130/pymacros/cells/via_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from math import ceil, floor
from tracemalloc import start
import gdsfactory as gf
from gdsfactory.types import Float2 , LayerSpec
from gdsfactory.typings import Float2 , LayerSpec
from .layers_def import *

@gf.cell
Expand Down

0 comments on commit 36922e0

Please sign in to comment.