Skip to content

Commit 525e14a

Browse files
author
Sebastian Molenda
authored
Fix missing dependency versions (#208)
* Fix missing dependency versions * update tested version - drop 3.8 as it reached end off life
1 parent dad9d9b commit 525e14a

File tree

5 files changed

+21
-20
lines changed

5 files changed

+21
-20
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
max-parallel: 1
2727
fail-fast: true
2828
matrix:
29-
python: [3.8.18, 3.9.18, 3.10.13, 3.11.6]
29+
python: [3.9.21, 3.10.16, 3.11.11, 3.12.9, 3.13.2]
3030
timeout-minutes: 5
3131
steps:
3232
- name: Checkout repository
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
fastapi
1+
fastapi>=0.115.11
2+
pubnub>=10.1.0
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
aiohttp
2-
aiohttp_cors
3-
1+
aiohttp>=3.11.14
2+
aiohttp-cors>=0.8.0
3+
pubnub>=10.1.0

requirements-dev.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
pyyaml
2-
pytest-cov
3-
pycryptodomex
4-
flake8
5-
pytest
6-
pytest-asyncio
7-
httpx
8-
h2
9-
requests
10-
aiohttp
11-
cbor2
12-
behave
13-
vcrpy
1+
pyyaml>=6.0
2+
pytest-cov>=6.0.0
3+
pycryptodomex>=3.21.0
4+
flake8>=7.1.2
5+
pytest>=8.3.5
6+
pytest-asyncio>=0.24.0
7+
httpx>=0.28
8+
h2>=4.1
9+
requests>=2.32.2
10+
aiohttp>=3.10.11
11+
cbor2>=5.6
12+
behave>=1.2.6
13+
vcrpy>=6.0.2
1414
urllib3<2
15-
busypie
15+
busypie>=0.5.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
'httpx>=0.28',
3737
'h2>=4.1',
3838
'requests>=2.4',
39-
'aiohttp',
39+
'aiohttp>3.9.2',
4040
'cbor2>=5.6'
4141
],
4242
zip_safe=False,

0 commit comments

Comments
 (0)