New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
check_pkg.py in NEMO/releases/release-4.0.1/doc/tools – NEMO

source: NEMO/releases/release-4.0.1/doc/tools/check_pkg.py @ 14482

Last change on this file since 14482 was 14482, checked in by nicolasmartin, 3 years ago

Trivial changes

  • Property svn:executable set to *
File size: 183 bytes
Line 
1#!/usr/bin/env python2
2
3import sys, importlib
4
5for argv in sys.argv[1:]:
6   try:
7      importlib.import_module(argv)
8   except ImportError:
9      print("Package %s is missing in Python" % argv)
10
Note: See TracBrowser for help on using the repository browser.