We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
>=3.2.1,<5.0.0
1 parent 93e9fed commit 8c6f10bCopy full SHA for 8c6f10b
.github/workflows/test.yml
@@ -81,6 +81,10 @@ jobs:
81
- name: Install Pydantic v2
82
if: matrix.pydantic-version == 'pydantic-v2'
83
run: uv pip install --upgrade "pydantic>=2.0.2,<3.0.0"
84
+ # TODO: Remove this once Python 3.8 is no longer supported
85
+ - name: Install older AnyIO in Python 3.8
86
+ if: matrix.python-version == '3.8'
87
+ run: uv pip install "anyio[trio]<4.0.0"
88
- run: mkdir coverage
89
- name: Test
90
run: bash scripts/test.sh
requirements-tests.txt
@@ -6,7 +6,7 @@ mypy ==1.8.0
6
dirty-equals ==0.8.0
7
sqlmodel==0.0.22
8
flask >=1.1.2,<4.0.0
9
-anyio[trio] >=3.2.1,<4.0.0
+anyio[trio] >=3.2.1,<5.0.0
10
PyJWT==2.8.0
11
pyyaml >=5.3.1,<7.0.0
12
passlib[bcrypt] >=1.7.2,<2.0.0
0 commit comments