From 484ba0aedd7e462411da631acb202aabf507c688 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 21 Mar 2022 15:12:02 +0800 Subject: [PATCH] fix #1141: parameterize failure caused by pydantic version --- docs/CHANGELOG.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 155f1f63..d86ee8dc 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -5,6 +5,7 @@ - fix: ignore comments and blank lines when parsing .env file - fix: failure in getting client and server IP/port when requesting HTTPS - fix: upgrade dependencies for security +- fix: parameterize failure caused by pydantic version ## 3.1.6 (2021-07-18) diff --git a/pyproject.toml b/pyproject.toml index fad32185..ff1ec765 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ python = "^3.6.2" requests = "^2.22.0" pyyaml = "^5.4.1" jinja2 = "^2.10.3" -pydantic = "^1.4" +pydantic = "~1.8" # >=1.8.0 <1.9.0 loguru = "^0.4.1" jmespath = "^0.9.5" black = "^19.10b0"