pydantic_v1.py 547 B

12345678910111213141516
  1. # Copyright (c) Microsoft Corporation.
  2. # SPDX-License-Identifier: Apache-2.0
  3. # DeepSpeed Team
  4. """Pydantic v1 compatibility module.
  5. Pydantic v2 introduced breaking changes that hinder its adoption:
  6. https://docs.pydantic.dev/latest/migration/. To provide deepspeed users the option to
  7. migrate to pydantic v2 on their own timeline, deepspeed uses this compatibility module
  8. as a pydantic-version-agnostic alias for pydantic's v1 API.
  9. """
  10. try:
  11. from pydantic.v1 import * # noqa: F401
  12. except ImportError:
  13. from pydantic import * # noqa: F401