chipfoundry-cli 2.2.1__tar.gz → 2.2.2__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: chipfoundry-cli
3
- Version: 2.2.1
3
+ Version: 2.2.2
4
4
  Summary: CLI tool to automate ChipFoundry project submission to SFTP server
5
5
  Home-page: https://chipfoundry.io
6
6
  License: Apache-2.0
@@ -3275,12 +3275,15 @@ def precheck(project_root, skip_checks, magic_drc, checks, dry_run):
3275
3275
  if checks:
3276
3276
  precheck_args.extend(list(checks))
3277
3277
 
3278
- inner_cmd = 'pip3 install --upgrade -q cf-precheck && cf-precheck ' + ' '.join(precheck_args)
3278
+ inner_cmd = 'pip3 install --upgrade -q --root-user-action=ignore cf-precheck 2>/dev/null && cf-precheck ' + ' '.join(precheck_args)
3279
3279
 
3280
3280
  docker_cmd = [
3281
3281
  'docker', 'run', '--rm',
3282
3282
  '-v', f'{project_root_path}:{project_root_path}',
3283
3283
  '-v', f'{pdk_root}:{pdk_root}',
3284
+ '-e', f'PDK_ROOT={pdk_root}',
3285
+ '-e', f'PDK_PATH={pdk_path}',
3286
+ '-e', f'PDKPATH={pdk_path}',
3284
3287
  docker_image,
3285
3288
  'bash', '-c', inner_cmd,
3286
3289
  ]
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "chipfoundry-cli"
3
- version = "2.2.1"
3
+ version = "2.2.2"
4
4
  description = "CLI tool to automate ChipFoundry project submission to SFTP server"
5
5
  authors = ["ChipFoundry <marwan.abbas@chipfoundry.io>"]
6
6
  readme = "README.md"
File without changes