Releases: lebrice/SimpleParsing
v0.0.21 - Literals, Defaults from Config files
What's Changed
- Fields with default value of
None
are treated as optional (even if type annotation is wrong) by @lebrice in #151 - Drop support for Python 3.6 by @lebrice in #153
- Add support for simple Literal fields by @lebrice in #152
- Export enums in main package init by @lebrice in #155
- Add pre-commit and run on all files by @lebrice in #154
- Add better support for setting defaults from Config files by @lebrice in #158
- Fix bug in docstring parsing, docstrings inherit from bases by @lebrice in #164
- Add
parse
to all forsimple_parsing.parse
by @lebrice in #170
Full Changelog: v0.0.20...v0.0.21
v0.0.20 - Subgroups, Fix Serialization / Annotation bugs
What's Changed
- force_full_path option to use always full paths to fields as option string by @ivanprado in #117
- Include requirements.txt by @thewchan in #128
- Fix a bug introduced in #117. It affects the DASH option in the nested mode by @ivanprado in #129
- Add support for multiple nested argument subgroups by @lebrice in #136
- [subgroups] Fix bugs and save chosen subgroup name in namespace by @lebrice in #140
- Fix ser/deserialization for enums and Path by @ivanprado in #137
- Fix issue with old-style annotation and postponed types by @lebrice in #146
- Fix issue 107 (decoding of 'False' -> True) by @lebrice in #147
- argparse.SUPPRESS-like functionality for advanced uses by @idoby in #124
- Use the globals of the dataclass module when evaluating forward type annotations by @lebrice in #148
New Contributors
Full Changelog: v0.0.19.post1...v0.0.19.post2
Quickfix for nesting, serialization, and postponed annotations bugs
What's Changed
- Fix bug with new Union syntax with postponed type annotations by @lebrice in #112
- Fix typos by @kianmeng in #116
- Fix nesting defaults (based on #113) by @lebrice in #115
- Add support for python 3.10, fix tests by @lebrice in #114
- Testing out GitHub actions instead of travis by @lebrice in #121
- Update badge on README by @lebrice in #122
- Try to run actions on PRs from forks too by @lebrice in #125
- Removed unnecessary state in ConflictResolver object. by @idoby in #123
- Fix #126, deserialization with postponed type ants by @lebrice in #127
New Contributors
Full Changelog: v0.0.19...v0.0.19.post1
Fixes for python 3.9, postponed type annotations
Add FrozenSerializable, Optional Subparsers
Simple release: Adds optional subparsers.
This is the first step towards my ultimate goal, which is to have multiple, independent, optional subparsers.
Doesn't sound like much now, but this would be a killer feature, which would really help simple-parsing step above the subparser limitations of argparse.
This would be especially useful when creating command-line APIs for ML applications, when you might need a subparser for each type of model, or for each type of dataset, or for each type of optimizer, etc etc.
This is best achieved using subparsers, however the current API is a bit clumsy.
Here is the roadmap for that feature:
- Optional subparsers (This release)
- Multiple independant subparsers on a single dataclass (Next release)
- Multiple, inter-dependant subparsers (stretch goal)
- (e.g. where the default value is dependant on the types of other fields)
Let me know what you think!
What's Changed
Full Changelog: v0.0.17...v0.0.18