Browse Source

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
pull/9796/head
Sebastián Ramírez 2 years ago
committed by GitHub
parent
commit
a64aacd782
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pyproject.toml
  2. 3
      requirements-tests.txt

2
pyproject.toml

@ -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"]

3
requirements-tests.txt

@ -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…
Cancel
Save