6.7.0-alpha0
Pre-release
Pre-release
thearchitector
released this
11 Apr 14:22
·
56 commits
to elias/typing
since this release
Adds backwards-compatible static typing support for use in Python 3.8+ typed contexts.
client: IndicoClient = IndicoClient(IndicoConfig(...))
# this is valid
subs: list[Submission] = client.call(ListSubmission(...))
# this is not, and will throw a typing error
subs: list[str] = client.call(ListSubmission(...))
What's Changed
- [DEV-11487] Remove deprecated methods by @nateshim-indico in #299
- [DEV-11498] update getquestionnaire by @nateshim-indico in #300
- GetReviews with changes by @pastap in #301
- [DEV-11501] Update Model Group Settings by @nateshim-indico in #302
- [DEV-11535] deprecate deleted -> filesDeleted for Submission by @nateshim-indico in #305
Full Changelog: 6.6.0...6.7.0-alpha0