From 809594910d3a56c5b327f80d38066dab18ed4368 Mon Sep 17 00:00:00 2001 From: xmatoha Date: Tue, 7 Mar 2023 20:37:52 +0100 Subject: [PATCH 1/4] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b65409d..0ca50a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ requests==2.26.0 -fastapi==0.75.2 +fastapi==0.92.0 From 07fc279ada0f2d0e74ca3f8bd689e6ca05592f7f Mon Sep 17 00:00:00 2001 From: xmatoha Date: Tue, 7 Mar 2023 20:38:53 +0100 Subject: [PATCH 2/4] removed python 3.6 --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index cce5356..a9691a3 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -14,7 +14,7 @@ jobs: FASTAPI_FF: '{"json_only": False, "file_1": True, "file_2": False, "file_3": True, "file_4": True}' strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, '3.10'] + python-version: [3.7, 3.8, 3.9, '3.10'] steps: - uses: actions/checkout@v2 From 94567fe733e1d84d4f7c6e5366026c5f93081550 Mon Sep 17 00:00:00 2001 From: xmatoha Date: Tue, 7 Mar 2023 20:53:09 +0100 Subject: [PATCH 3/4] added httpx as dependency --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 0ca50a6..852422a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ requests==2.26.0 fastapi==0.92.0 +httpx==0.23.3 From 088d9ce999c27423ee425fcb91b10d079c251342 Mon Sep 17 00:00:00 2001 From: xmatoha Date: Tue, 7 Mar 2023 20:55:38 +0100 Subject: [PATCH 4/4] added support for 3.11 --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index a9691a3..5ccd6ad 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -14,7 +14,7 @@ jobs: FASTAPI_FF: '{"json_only": False, "file_1": True, "file_2": False, "file_3": True, "file_4": True}' strategy: matrix: - python-version: [3.7, 3.8, 3.9, '3.10'] + python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] steps: - uses: actions/checkout@v2