mirror of https://github.com/tiangolo/fastapi.git
➕ temp: Install Pydantic from source to test JSON Schema metadata fixes (#9777)
* ➕ Install Pydantic from source, from branch for JSON Schema with metadata * ➕ Update dependencies, install Pydantic main * ➕ Fix dependency URL for Pydantic from source * ➕ Add pydantic-settings for test requirements
This commit is contained in:
parent
bee59adec9
commit
a64aacd782
|
|
@ -42,7 +42,7 @@ classifiers = [
|
|||
]
|
||||
dependencies = [
|
||||
"starlette>=0.27.0,<0.28.0",
|
||||
"pydantic>=1.7.4,!=1.8,!=1.8.1,<3.0.0",
|
||||
# "pydantic>=1.7.4,!=1.8,!=1.8.1,<3.0.0",
|
||||
"typing-extensions>=4.5.0",
|
||||
]
|
||||
dynamic = ["version"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
-e .
|
||||
pydantic-settings >=2.0.0
|
||||
pytest >=7.1.3,<8.0.0
|
||||
coverage[toml] >= 6.5.0,< 8.0
|
||||
mypy ==1.4.0
|
||||
|
|
@ -24,3 +25,5 @@ passlib[bcrypt] >=1.7.2,<2.0.0
|
|||
# types
|
||||
types-ujson ==5.7.0.1
|
||||
types-orjson ==3.6.2
|
||||
|
||||
git+https://github.com/pydantic/pydantic.git
|
||||
|
|
|
|||
Loading…
Reference in New Issue