Skip to content

Commit

Permalink
Limit Pydantic to < 2.0.0 until we solve 2.0.0 incompatibilities (#32312
Browse files Browse the repository at this point in the history
)

The Pydantic 2.0.0 release on 30th of June broke a number of CI
tests (including some K8S tests).

We limit it temporarily until the incompatibilities are fixed.

Related: #32311
  • Loading branch information
potiuk committed Jul 2, 2023
1 parent 4efbcdc commit 2811ba7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ install_requires =
pendulum>=2.0
pluggy>=1.0
psutil>=4.2.0
pydantic>=1.10.0
# Limit Pydantic to <2.0.0 because it breaks Kubernetes tests and building providers
# This limit should be removed after https://github.com/apache/airflow/issues/32311 is fixed
pydantic>=1.10.0,<2.0.0
pygments>=2.0.1
pyjwt>=2.0.0
python-daemon>=3.0.0
Expand Down

0 comments on commit 2811ba7

Please sign in to comment.