From 6fadf11c0fb526407ca4be67e57437204cbf5bc5 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Mon, 22 Jan 2024 15:55:06 -0500 Subject: [PATCH 1/2] chore: allow FastAPI 0.109 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 430760c..93293e8 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ "asyncpg": ["asyncpg>=0.29.0,<0.30.0"], "flask": ["Flask>=2.2.5,<4"], "django": ["Django>=4.2.7,<5", "djangorestframework>=3.14.0,<3.15"], - "fastapi": ["fastapi>=0.104,<0.109"], + "fastapi": ["fastapi>=0.104,<0.110"], }, author=config["package"]["authors"], From e78086690d02576a99d05c8c29d0c45448c71fb3 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Mon, 22 Jan 2024 15:58:43 -0500 Subject: [PATCH 2/2] ci: test python 3.12 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4bd9634..04a8289 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.10', '3.11' ] + python-version: [ '3.10', '3.12' ] services: redis: image: redis @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.10', '3.11' ] + python-version: [ '3.10', '3.12' ] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5