ciel 2.2.0__tar.gz → 2.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ciel
3
- Version: 2.2.0
3
+ Version: 2.3.1
4
4
  Summary: An PDK builder/version manager for PDKs in the open_pdks format
5
5
  Home-page: https://github.com/fossi-foundation/ciel
6
6
  License: Apache-2.0
@@ -102,6 +102,11 @@ LIB_FLAG_MAP = {
102
102
  "gf180mcu_fd_ip_sram": "--enable-sram-gf180mcu",
103
103
  "gf180mcu_osu_sc_gp12t3v3": "--enable-osu-sc-gf180mcu",
104
104
  "gf180mcu_osu_sc_gp9t3v3": "--enable-osu-sc-gf180mcu",
105
+ "gf180mcu_as_sc_mcu7t3v3": "--enable-avalon-sc-gf180mcu",
106
+ "gf180mcu_ocd_io": "--enable-ocd-io-gf180mcu",
107
+ "gf180mcu_ocd_alpha_small": "--enable-alpha-gf180mcu",
108
+ "gf180mcu_ocd_alpha_large": "--enable-alpha-gf180mcu",
109
+ "gf180mcu_ocd_alpha_misc": "--enable-alpha-gf180mcu",
105
110
  }
106
111
 
107
112
 
@@ -44,6 +44,9 @@ class VersionArgument(click.Argument):
44
44
 
45
45
  def process_value(self, ctx, value):
46
46
  try:
47
+ # handle sentinels in click ≥ 8.3.0
48
+ if hasattr(value, "name") and value.name == "UNSET":
49
+ value = None
47
50
  tool_metadata_file_path = None
48
51
  if "tool_metadata_file_path" in ctx.params:
49
52
  tool_metadata_file_path = ctx.params["tool_metadata_file_path"]
@@ -96,6 +96,11 @@ Family.by_name["gf180mcu"] = Family(
96
96
  "gf180mcu_fd_ip_sram",
97
97
  "gf180mcu_osu_sc_gp12t3v3",
98
98
  "gf180mcu_osu_sc_gp9t3v3",
99
+ "gf180mcu_as_sc_mcu7t3v3",
100
+ "gf180mcu_ocd_io",
101
+ "gf180mcu_ocd_alpha_small",
102
+ "gf180mcu_ocd_alpha_large",
103
+ "gf180mcu_ocd_alpha_misc",
99
104
  ],
100
105
  default_includes=[
101
106
  "gf180mcu_fd_io",
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "ciel"
3
- version = "2.2.0"
3
+ version = "2.3.1"
4
4
  description = "An PDK builder/version manager for PDKs in the open_pdks format"
5
5
  authors = ["Mohamed Gaber <me@donn.website>", "Efabless Corporation"]
6
6
  readme = "Readme.md"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes