From a326d3bcc0e04c0bc725945b71c95ad664483fb2 Mon Sep 17 00:00:00 2001 From: Cristian Calugaru Date: Mon, 19 Sep 2022 02:51:49 +0300 Subject: [PATCH] lib upgrades (#7536) * lib upgrades * black reformatting * downgraded datamode-core-generator to 0.13.0 and pydantic to 1.9.0 --- ingestion-core/setup.py | 4 ++-- ingestion/setup.py | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ingestion-core/setup.py b/ingestion-core/setup.py index 7b667e0c134..c8e5dab39be 100644 --- a/ingestion-core/setup.py +++ b/ingestion-core/setup.py @@ -21,14 +21,14 @@ def get_long_description(): dev = { - "datamodel-code-generator==0.11.14", + "datamodel-code-generator==0.13.0", "black==21.12b0", "incremental", "twine", "twisted", "wheel", "click", - "pydantic[email]==1.8.2", + "pydantic[email]==1.9.0", } setup( diff --git a/ingestion/setup.py b/ingestion/setup.py index 5565a14ef63..87989456f5b 100644 --- a/ingestion/setup.py +++ b/ingestion/setup.py @@ -28,7 +28,7 @@ base_requirements = { "click>=7.1.1", "mypy_extensions>=0.4.3", "typing-inspect", - "pydantic[email]==1.8.2", + "pydantic[email]==1.9.0", "google>=3.0.0", "google-auth>=1.33.0", "python-dateutil>=2.8.1", @@ -133,12 +133,13 @@ plugins: Dict[str, Set[str]] = { "nifi": {}, } dev = { - "datamodel-code-generator==0.12.0", + "datamodel-code-generator==0.13.0", "black==22.3.0", "pycln==1.3.2", "docker", "google-cloud-storage==1.43.0", "twine", + "pydantic[email]==1.9.0", } test = { "isort==5.10.1",