Skip to content

Commit f6b4be9

Browse files
author
maces
committed
fix bug in tests due to starlette and Fastapi version mismatch
1 parent e386077 commit f6b4be9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/github-actions-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
python-version: [ 3.8, 3.9, "3.10", 3.11, 3.12 ]
22-
fastapi-version: [ 0.94, 0.109, "0.115.0" ]
22+
fastapi-version: [ 0.110, 0.114, "0.115.0" ]
2323
jinja2-version: [ 3.1.4 ]
2424
runs-on: ubuntu-latest
2525
steps:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ packages = [
4040

4141
[tool.poetry.dependencies]
4242
python = "^3.8"
43-
fastapi = ">=0.115,<0.116"
43+
fastapi = ">=0.110,<0.116"
4444
jinja2 = "^3.1"
4545

4646
[tool.poetry.group.dev.dependencies]
@@ -51,6 +51,7 @@ pre-commit = "^3.1.1"
5151
pytest = ">=7.2.2,<9.0.0"
5252
pytest-cov = ">=4,<6"
5353
httpx = ">=0.23.3,<0.29.0"
54+
starlette = ">=0.37.2"
5455

5556
[build-system]
5657
requires = ["poetry-core"]

0 commit comments

Comments
 (0)