8000 WIP: refactor annotation injection for known (often generic) types by sydney-runkle · Pull Request #9979 · pydantic/pydantic · GitHub
[go: up one dir, main page]

Skip to content
Prev Previous commit
Next Next commit
try another alternate workaround
  • Loading branch information
sydney-runkle committed Jul 29, 2024
commit e3c710854aecce7ab394c4d241bfb9754e4e63a6
4 changes: 2 additions & 2 deletions tests/test_fastapi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ set -e
cd fastapi
git fetch --tags

# waiting on a fix for a bug introduced in v72.0.0, see https://github.com/pypa/setuptools/issues/4520
# waiting on a fix for a bug introduced in v72.0.0, see https://github.com/pypa/setuptools/issues/4519
# problem lies in sqlalchemy
python -m pip install 'setuptools<72.0.0'

pip install -r requirements.txt
pip install --no-build-isolation -r requirements.txt
# Install the version of pydantic from the current branch, not the released version used by fastapi
pip uninstall -y pydantic
cd .. && pip install . && cd fastapi
Expand Down
0