gridparse 1.5.3__tar.gz → 1.5.4__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.
- {gridparse-1.5.3/gridparse.egg-info → gridparse-1.5.4}/PKG-INFO +3 -1
- {gridparse-1.5.3 → gridparse-1.5.4}/README.md +2 -0
- {gridparse-1.5.3 → gridparse-1.5.4}/gridparse/grid_argument_parser.py +1 -1
- {gridparse-1.5.3 → gridparse-1.5.4/gridparse.egg-info}/PKG-INFO +3 -1
- {gridparse-1.5.3 → gridparse-1.5.4}/pyproject.toml +1 -1
- {gridparse-1.5.3 → gridparse-1.5.4}/setup.py +1 -1
- {gridparse-1.5.3 → gridparse-1.5.4}/LICENSE +0 -0
- {gridparse-1.5.3 → gridparse-1.5.4}/MANIFEST.in +0 -0
- {gridparse-1.5.3 → gridparse-1.5.4}/gridparse/__init__.py +0 -0
- {gridparse-1.5.3 → gridparse-1.5.4}/gridparse/utils.py +0 -0
- {gridparse-1.5.3 → gridparse-1.5.4}/gridparse.egg-info/SOURCES.txt +0 -0
- {gridparse-1.5.3 → gridparse-1.5.4}/gridparse.egg-info/dependency_links.txt +0 -0
- {gridparse-1.5.3 → gridparse-1.5.4}/gridparse.egg-info/requires.txt +0 -0
- {gridparse-1.5.3 → gridparse-1.5.4}/gridparse.egg-info/top_level.txt +0 -0
- {gridparse-1.5.3 → gridparse-1.5.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: gridparse
|
3
|
-
Version: 1.5.
|
3
|
+
Version: 1.5.4
|
4
4
|
Summary: Grid search directly from argparse
|
5
5
|
Home-page: https://github.com/gchochla/gridparse
|
6
6
|
Author: Georgios Chochlakis
|
@@ -57,6 +57,8 @@ Dynamic: license-file
|
|
57
57
|
|
58
58
|
`gridparse` is a lightweight (only dependency is `omegaconf` which also downloads `yaml`) `ArgumentParser` - aka `GridArgumentParser` - that supports your *grid-search* needs. Supports top-level parser and subparsers. Configuration files of any type (using `omegaconf`) are also supported through the argument `--gridparse-config` (also available with underscore `_`), where multiple configuration files can be passed and parsed.
|
59
59
|
|
60
|
+
To install: `pip install gridparse`
|
61
|
+
|
60
62
|
## Overview
|
61
63
|
|
62
64
|
It transforms the following arguments in the corresponding way:
|
@@ -4,6 +4,8 @@
|
|
4
4
|
|
5
5
|
`gridparse` is a lightweight (only dependency is `omegaconf` which also downloads `yaml`) `ArgumentParser` - aka `GridArgumentParser` - that supports your *grid-search* needs. Supports top-level parser and subparsers. Configuration files of any type (using `omegaconf`) are also supported through the argument `--gridparse-config` (also available with underscore `_`), where multiple configuration files can be passed and parsed.
|
6
6
|
|
7
|
+
To install: `pip install gridparse`
|
8
|
+
|
7
9
|
## Overview
|
8
10
|
|
9
11
|
It transforms the following arguments in the corresponding way:
|
@@ -604,7 +604,7 @@ class GridArgumentParser(_GridActionsContainer, AuxArgumentParser):
|
|
604
604
|
# if arg_string is "_None_", then return None
|
605
605
|
if (
|
606
606
|
arg_string == "_None_"
|
607
|
-
and action.dest in self._grid_args
|
607
|
+
# and action.dest in self._grid_args
|
608
608
|
and action.type is not strbool
|
609
609
|
):
|
610
610
|
return None
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: gridparse
|
3
|
-
Version: 1.5.
|
3
|
+
Version: 1.5.4
|
4
4
|
Summary: Grid search directly from argparse
|
5
5
|
Home-page: https://github.com/gchochla/gridparse
|
6
6
|
Author: Georgios Chochlakis
|
@@ -57,6 +57,8 @@ Dynamic: license-file
|
|
57
57
|
|
58
58
|
`gridparse` is a lightweight (only dependency is `omegaconf` which also downloads `yaml`) `ArgumentParser` - aka `GridArgumentParser` - that supports your *grid-search* needs. Supports top-level parser and subparsers. Configuration files of any type (using `omegaconf`) are also supported through the argument `--gridparse-config` (also available with underscore `_`), where multiple configuration files can be passed and parsed.
|
59
59
|
|
60
|
+
To install: `pip install gridparse`
|
61
|
+
|
60
62
|
## Overview
|
61
63
|
|
62
64
|
It transforms the following arguments in the corresponding way:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|