From f5dd2ebe6aeb03fb602bfe2751c058433b06aa99 Mon Sep 17 00:00:00 2001 From: Luis Date: Wed, 8 Apr 2026 06:53:14 -0400 Subject: [PATCH] set GDS output metadata to false and set rect -> gds and gds -> rect scripts to be executable --- gds2rect.py | 2 +- gds2rect.sh | 0 rect2gds.py | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 gds2rect.py mode change 100644 => 100755 gds2rect.sh mode change 100644 => 100755 rect2gds.py diff --git a/gds2rect.py b/gds2rect.py old mode 100644 new mode 100755 index f8c8447..a95df95 --- a/gds2rect.py +++ b/gds2rect.py @@ -1,4 +1,4 @@ -#!/bin/python3 +#!/usr/bin/env python3 """ This script converts gds files to rect formart depending on a ACT tech configuration diff --git a/gds2rect.sh b/gds2rect.sh old mode 100644 new mode 100755 diff --git a/rect2gds.py b/rect2gds.py old mode 100644 new mode 100755 index a7422ea..e96e365 --- a/rect2gds.py +++ b/rect2gds.py @@ -1,4 +1,4 @@ -#!/bin/python3 +#!/usr/bin/env python3 """ This script converts rect files to GDS depending on a ACT tech configuration @@ -469,4 +469,4 @@ def parse_layout_file(filepath: str, gds, materials, vias, metals, materials_blo align=align, scale=scale ) - gds_object.write_gds(outputfile) + gds_object.write_gds(outputfile, with_metadata=False)