Skip to content

Commit 9a8369d

Browse files
committed
hotfix: rename ihp default variant to prevent setup files from breaking
1 parent 0813b53 commit 9a8369d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "volare"
3-
version = "0.20.4"
3+
version = "0.20.5"
44
description = "An PDK builder/version manager for PDKs in the open_pdks format"
55
authors = ["Efabless Corporation and Contributors <[email protected]>"]
66
readme = "Readme.md"

volare/build/ihp_sg13g2.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ def get_ihp(
6868
def build_ihp(build_directory, ihp_path):
6969
# """Build"""
7070
try:
71-
shutil.rmtree(os.path.join(build_directory, "ihp_sg13g2"))
71+
shutil.rmtree(os.path.join(build_directory, "ihp-sg13g2"))
7272
except FileNotFoundError:
7373
pass
7474
shutil.copytree(
7575
os.path.join(ihp_path, "ihp-sg13g2"),
76-
os.path.join(build_directory, "ihp_sg13g2"),
76+
os.path.join(build_directory, "ihp-sg13g2"),
7777
ignore=lambda dir, files: (
7878
files if ".git" in os.path.split(dir) else [".git", ".DS_Store"]
7979
),

volare/families.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def resolve_libraries(
108108
)
109109
Family.by_name["ihp_sg13g2"] = Family(
110110
name="ihp_sg13g2",
111-
variants=["ihp_sg13g2"],
111+
variants=["ihp-sg13g2"],
112112
all_libraries=[
113113
"sg13g2_io",
114114
"sg13g2_pr",

0 commit comments

Comments
 (0)