Skip to content

weboob.capabilities.base: use python3's enums and introduce EnumField

Woob Import requested to merge (removed):enum into master

Python 3 adds new Enum types that enforce a value belonging to the enumeration.

Housing and Calendar capabilities are updated to use those new enums. Bank capability is updated to use enum instead of standard ints for account types.

Python 2 compatibility is achieved with "enum34" package.

Merge request reports