Skip to content

Commit

Permalink
[Requirements] Fix aiohttp-retry following release of 2.9.0 (mlrun#6583)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper authored Oct 27, 2024
1 parent 6c259a6 commit d194f19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
urllib3>=1.26.9, <1.27
GitPython~=3.1, >=3.1.41
aiohttp~=3.9
aiohttp-retry~=2.8
# 2.9.0 removes _is_status_code_ok method, which is used in mlrun/utils/async_http.py
aiohttp-retry~=2.8.0
click~=8.1
nest-asyncio~=1.0
ipython~=8.10
Expand Down
1 change: 1 addition & 0 deletions tests/test_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ def test_requirement_specifiers_convention():
"pyopenssl": {">=23"},
"protobuf": {"~=3.20.3", ">=3.20.3, <4"},
"google-cloud-bigquery": {"[pandas, bqstorage]==3.14.1"},
"aiohttp-retry": {"~=2.8.0"},
# due to a bug in apscheduler with python 3.9 https://github.com/agronholm/apscheduler/issues/770
"apscheduler": {"~=3.6, !=3.10.2"},
# used in tests
Expand Down

0 comments on commit d194f19

Please sign in to comment.