Change log#
ojax 3.0.0#
Rework ojax.OTree
field type representation.
Using custom subclass of
dataclasses.Field
instead of setting custom metadata. This simplifies field
type checking and allows for further subclassing. Specifically:
classes
Aux
,Child
,Ignore
are added which indicates the type ofOTree
field. They all inherit from the abstract base classOTreeField
which is itself a subclass ofdataclasses.Field
.The function
ojax.get_field_type
and the enum classojax.FieldType
is removed since they are now unnecessary.
Note that users should still use functions aux()
, child()
, ignore()
to
declare field types since directly using classes could generate confusion for
type checking. This is also in line with the standard dataclasses
usage.
ojax 2.0.2#
Fixes unnecessary missing annotation warning for non-user-defined attributes.
ojax 2.0.1#
Change doc theme. Improve documentation.
Other changes
Now uses the sphinx_book_theme for Sphinx documentation.
Finetune documentation.
ojax 2.0.0#
Rework API. Add unit tests.
Breaking changes
Renamed
ojax.OTree.infer_field_type()
toojax.OTree.__infer_otree_field_type__()
.
New features
Added the
ojax.fields()
function to get the fields from an OTree. It can also return fields of a certain field type.
Other changes
Renamed
test/
folder totests/
.Added unit tests.
Added CHANGELOG.md (this file).
ojax 1.0.0#
First version.