Skip to content

Commit 3fd136d

Browse files
committed
Merge branch 'main' of github.com:NACLab/ngc-sim-lib
2 parents bfa57c0 + 6e7a8f6 commit 3fd136d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ngcsimlib/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ def preload():
1717
parser = argparse.ArgumentParser(description='Build and run a model using ngclearn')
1818
parser.add_argument("--modules", type=str, help='location of modules.json file')
1919

20-
args = parser.parse_args()
20+
## ngc-sim-lib only cares about --modules argument
21+
args, unknown = parser.parse_known_args() #args = parser.parse_args()
2122
try:
2223
module_path = args.modules
2324
except:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ngcsimlib"
7-
version = "0.2.beta1"
7+
version = "0.2.beta2"
88

99
description = "Simulation software backend for ngc-learn."
1010
authors = [

0 commit comments

Comments
 (0)