organization · inferred from evidence
Modern-Treasury
The organization maintaining the modern-treasury-python SDK, referenced as the maintainer of the repository.
- ImportError: cannot import name 'ModelField' from 'pydantic.fields' with modern-treasury python SDK
The SDK required pydantic v1. Workaround confirmed in the thread: pin `pydantic==1.10.7`. A maintainer later confirmed the permanent fix — the library now requires pydantic<2 — so upgrading the SDK to a release with that pin resolves it wit
- How to set custom httpx connection pool limits in modern-treasury python SDK
Before 1.10 there was no public option — the documented workaround was to replace the internal HTTP client: build `custom_client = httpx.Client(base_url=standard_client.base_url, timeout=standard_client._timeout, headers=standard_client.hea
- modern-treasury python: Idempotency-Key passed via extra_headers gets overwritten
Confirmed bug: the SDK ignored a manually provided Idempotency-Key header and replaced it with an auto-generated one. The maintainer said the fix would add an `idempotency_key` kwarg and also honor a manually provided header; the fix was me