lib upgrades (#7536)

* lib upgrades

* black reformatting

* downgraded datamode-core-generator to 0.13.0 and pydantic to 1.9.0
This commit is contained in:
Cristian Calugaru 2022-09-19 02:51:49 +03:00 committed by GitHub
parent b2bdc54ac7
commit a326d3bcc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -21,14 +21,14 @@ def get_long_description():
dev = { dev = {
"datamodel-code-generator==0.11.14", "datamodel-code-generator==0.13.0",
"black==21.12b0", "black==21.12b0",
"incremental", "incremental",
"twine", "twine",
"twisted", "twisted",
"wheel", "wheel",
"click", "click",
"pydantic[email]==1.8.2", "pydantic[email]==1.9.0",
} }
setup( setup(

View File

@ -28,7 +28,7 @@ base_requirements = {
"click>=7.1.1", "click>=7.1.1",
"mypy_extensions>=0.4.3", "mypy_extensions>=0.4.3",
"typing-inspect", "typing-inspect",
"pydantic[email]==1.8.2", "pydantic[email]==1.9.0",
"google>=3.0.0", "google>=3.0.0",
"google-auth>=1.33.0", "google-auth>=1.33.0",
"python-dateutil>=2.8.1", "python-dateutil>=2.8.1",
@ -133,12 +133,13 @@ plugins: Dict[str, Set[str]] = {
"nifi": {}, "nifi": {},
} }
dev = { dev = {
"datamodel-code-generator==0.12.0", "datamodel-code-generator==0.13.0",
"black==22.3.0", "black==22.3.0",
"pycln==1.3.2", "pycln==1.3.2",
"docker", "docker",
"google-cloud-storage==1.43.0", "google-cloud-storage==1.43.0",
"twine", "twine",
"pydantic[email]==1.9.0",
} }
test = { test = {
"isort==5.10.1", "isort==5.10.1",