ciel 2.3.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.3.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
@@ -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"]
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "ciel"
3
- version = "2.3.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
File without changes
File without changes