Skip to content
Snippets Groups Projects

Release notes

  • Update CI
    • enforce gitflow with a master branch
    • ship the release on pypi.org and gitlab pages update after merge on master branch
    • Refactor tests with pytest
  • API change:
    • add core.otbObject.name property
    • remove core.otbObject.output_param property
  • Add summarize() function to core.otbObject + test. This returns a nested dictionary summarizing the otbObject.
  • Improve the auto env init. in helpers.py
  • Refactor otbObject based classes inheritance :

Before

classDiagram
otbObject <|-- Output
otbObject <|-- App
otbObject <|-- Input
otbObject <|-- Operation
otbObject <|-- Slicer

After

classDiagram
otbObject <|-- Output
otbObject <|-- App
App <|-- Input
App <|-- Operation
App <|-- Slicer