Skip to content
Snippets Groups Projects
Unverified Commit fa215bfa authored by Snawoot's avatar Snawoot Committed by GitHub
Browse files

Merge pull request #75 from Frederick888/fix-aioredis-version

Limit aioredis version
parents 1e9d135a 50122232
Branches pending_rolling_updates
Tags
No related merge requests found
...@@ -26,7 +26,7 @@ setup(name='postfix_mta_sts_resolver', ...@@ -26,7 +26,7 @@ setup(name='postfix_mta_sts_resolver',
], ],
extras_require={ extras_require={
'sqlite': 'aiosqlite>=0.10.0', 'sqlite': 'aiosqlite>=0.10.0',
'redis': 'aioredis>=1.2.0', 'redis': 'aioredis>=1.2.0,<2.0.0',
'dev': [ 'dev': [
'pytest>=3.0.0', 'pytest>=3.0.0',
'pytest-cov', 'pytest-cov',
......
...@@ -13,7 +13,7 @@ parts: ...@@ -13,7 +13,7 @@ parts:
python-version: python3 python-version: python3
python-packages: python-packages:
- "aiosqlite>=0.10.0" - "aiosqlite>=0.10.0"
- "aioredis>=1.2.0" - "aioredis>=1.2.0,<2.0.0"
build-packages: build-packages:
- gcc - gcc
- make - make
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment