Skip to content

Commit 051eea2

Browse files
committed
fix dependency to aioredis 1.3.1
1 parent ce2837f commit 051eea2

5 files changed

Lines changed: 11 additions & 9 deletions

File tree

CHANGES.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Changes
2-
## 0.8.1 (2020-03-31)
2+
## 0.8.2 (2021-09-23)
3+
- `[fix]` Fix dependency for aioredis
4+
## 0.8.1 (2021-03-31)
35
- `[fix]` Fix settings for Python 3.7
4-
## 0.8.0 (2020-03-31)
6+
## 0.8.0 (2021-03-31)
57
- `[feature]` Settings plugin
6-
## 0.7.0 (2020-03-29)
8+
## 0.7.0 (2021-03-29)
79
- `[feature]` Control plugin with Health, Heartbeat, Environment and Version
8-
## 0.6.1 (2020-03-24)
10+
## 0.6.1 (2021-03-24)
911
- `[fix]` Bump `aiojobs`to get rid of not required dependencies
1012
## 0.6.0 (2020-11-26)
1113
- `[feature]` Memcached

alt_requirements/requirements_core.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#fastapi>=0.61.*
1+
#fastapi>=0.63.*
22
#pydantic >=1.0.0,<2.0.0
33
fastapi>=0.41.*
44
pydantic>=0.32.*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
-r requirements_core.txt
2-
aioredis>=1.3.*
2+
aioredis<=1.3.1

fastapi_plugins/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
from __future__ import absolute_import
1515

16-
VERSION = (0, 8, 1)
16+
VERSION = (0, 8, 2)
1717

1818
__all__ = []
1919
__author__ = 'madkote <madkote(at)bluewin.ch>'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ def _read():
8181
URL = 'https://github.com/madkote/%s' % NAME
8282

8383
REQUIRES_INSTALL = [
84-
# 'fastapi>=0.61.*',
84+
# 'fastapi>=0.63.*',
8585
# 'pydantic >=1.0.0,<2.0.0',
8686
'fastapi>=0.41.*',
8787
'pydantic>=0.32.*',
8888
'tenacity>=6.2.*'
8989
]
9090
REQUIRES_INSTALL += [
91-
'aioredis>=1.3.*'
91+
'aioredis<=1.3.1'
9292
]
9393
REQUIRES_INSTALL += [
9494
'aiojobs>=0.3.*'

0 commit comments

Comments
 (0)