Browse Source
⬆️ Upgrade AnyIO max version for tests, new range: `>=3.2.1,<5.0.0` (#13273)
pull/13279/head
Sebastián Ramírez
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
1 deletions
-
.github/workflows/test.yml
-
requirements-tests.txt
|
|
@ -81,6 +81,10 @@ jobs: |
|
|
|
- name: Install Pydantic v2 |
|
|
|
if: matrix.pydantic-version == 'pydantic-v2' |
|
|
|
run: uv pip install --upgrade "pydantic>=2.0.2,<3.0.0" |
|
|
|
# TODO: Remove this once Python 3.8 is no longer supported |
|
|
|
- name: Install older AnyIO in Python 3.8 |
|
|
|
if: matrix.python-version == '3.8' |
|
|
|
run: uv pip install "anyio[trio]<4.0.0" |
|
|
|
- run: mkdir coverage |
|
|
|
- name: Test |
|
|
|
run: bash scripts/test.sh |
|
|
|
|
|
@ -6,7 +6,7 @@ mypy ==1.8.0 |
|
|
|
dirty-equals ==0.8.0 |
|
|
|
sqlmodel==0.0.22 |
|
|
|
flask >=1.1.2,<4.0.0 |
|
|
|
anyio[trio] >=3.2.1,<4.0.0 |
|
|
|
anyio[trio] >=3.2.1,<5.0.0 |
|
|
|
PyJWT==2.8.0 |
|
|
|
pyyaml >=5.3.1,<7.0.0 |
|
|
|
passlib[bcrypt] >=1.7.2,<2.0.0 |
|
|
|