Skip to content

Releases: lebrice/SimpleParsing

v0.0.21 - Literals, Defaults from Config files

19 Oct 22:17
0f1db02
Compare
Choose a tag to compare

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 for simple_parsing.parse by @lebrice in #170

Full Changelog: v0.0.20...v0.0.21

v0.0.20 - Subgroups, Fix Serialization / Annotation bugs

07 Jun 21:53
ed8170a
Compare
Choose a tag to compare

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

20 Apr 16:54
d3cd641
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.19...v0.0.19.post1

Fixes for python 3.9, postponed type annotations

17 Mar 18:37
a6fef91
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.18...v0.0.19

Add FrozenSerializable, Optional Subparsers

19 Jan 03:32
9d4e4c8
Compare
Choose a tag to compare

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:

  1. Optional subparsers (This release)
  2. Multiple independant subparsers on a single dataclass (Next release)
  3. 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

Positional args, Dash option strings, Customizability

03 Nov 17:52
3245595
Compare
Choose a tag to compare

List of choices, Cleaner logging, Auto Versionning

29 Jul 18:27
26919f6
Compare
Choose a tag to compare