We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bfa57c0 + 6e7a8f6 commit 3fd136dCopy full SHA for 3fd136d
ngcsimlib/__init__.py
@@ -17,7 +17,8 @@ def preload():
17
parser = argparse.ArgumentParser(description='Build and run a model using ngclearn')
18
parser.add_argument("--modules", type=str, help='location of modules.json file')
19
20
- args = parser.parse_args()
+ ## ngc-sim-lib only cares about --modules argument
21
+ args, unknown = parser.parse_known_args() #args = parser.parse_args()
22
try:
23
module_path = args.modules
24
except:
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "ngcsimlib"
7
-version = "0.2.beta1"
+version = "0.2.beta2"
8
9
description = "Simulation software backend for ngc-learn."
10
authors = [
0 commit comments