From ea17ca37ee64cc0dee7f77d5eeea42ce9014c454 Mon Sep 17 00:00:00 2001 From: jell-o-fishi Date: Sun, 10 Dec 2023 06:21:09 +0200 Subject: [PATCH 1/2] upgraded aiohttp --- requirements.txt | 2 +- tests/conftest.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5c0e0f2c..23f95dda 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ Rx==3.2.0 -aiohttp==3.8.6; python_version < '3.11.5' +aiohttp==3.9.1 aioquic==0.9.23 asyncclick==8.1.3.4 asyncstdlib==3.10.9 diff --git a/tests/conftest.py b/tests/conftest.py index e065ba63..fd5cddc0 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -41,12 +41,12 @@ def setup_logging(level=logging.DEBUG, use_file: bool = False): tested_transports = [ 'tcp', - 'quart' + 'quart', + 'aiohttp' ] if sys.version_info[:3] < (3, 11, 5): tested_transports += [ - 'aiohttp', 'quic', 'http3', # 'websockets' From 4c00cf1519d17f712c19f92e7271c964a661fdcc Mon Sep 17 00:00:00 2001 From: jell-o-fishi Date: Sun, 10 Dec 2023 06:25:09 +0200 Subject: [PATCH 2/2] remove need to test on 3.11.4 --- .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 c0c70333..c06cfae6 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.11.4", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }}