Skip to content

Commit 302ea89

Browse files
authored
Merge pull request #209 from rsocket/aiohttp39
upgraded aiohttp
2 parents acc9206 + 4c00cf1 commit 302ea89

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.11.4", "3.12"]
19+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python ${{ matrix.python-version }}

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Rx==3.2.0
2-
aiohttp==3.8.6; python_version < '3.11.5'
2+
aiohttp==3.9.1
33
aioquic==0.9.23
44
asyncclick==8.1.3.4
55
asyncstdlib==3.10.9

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ def setup_logging(level=logging.DEBUG, use_file: bool = False):
4141

4242
tested_transports = [
4343
'tcp',
44-
'quart'
44+
'quart',
45+
'aiohttp'
4546
]
4647

4748
if sys.version_info[:3] < (3, 11, 5):
4849
tested_transports += [
49-
'aiohttp',
5050
'quic',
5151
'http3',
5252
# 'websockets'

0 commit comments

Comments
 (0)