Skip to content

Commit

Permalink
Merge pull request #3561 from nzw0301/undo-hotfix-fakeredis
Browse files Browse the repository at this point in the history
Remove the version constraint of `fakeredis`
  • Loading branch information
toshihikoyanase committed May 19, 2022
2 parents d486aef + 149fcaf commit 217e5ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Expand Up @@ -95,8 +95,8 @@ def get_extras_require() -> Dict[str, List[str]]:
"shap",
"chainer>=5.0.0",
"cma",
# TODO(HideakiImamura): Remove the version constraint after the next release.
"fakeredis<=1.7.1",
"fakeredis<=1.7.1; python_version<'3.8'",
"fakeredis ; python_version>='3.8'",
"lightgbm",
"matplotlib>=3.0.0",
"mlflow",
Expand Down Expand Up @@ -129,8 +129,8 @@ def get_extras_require() -> Dict[str, List[str]]:
"fastai ; python_version>'3.6' and python_version<'3.10'",
],
"tests": [
# TODO(HideakiImamura): Remove the version constraint after the next release.
"fakeredis<=1.7.1",
"fakeredis<=1.7.1; python_version<'3.8'",
"fakeredis ; python_version>='3.8'",
"pytest",
],
"optional": [
Expand Down

0 comments on commit 217e5ef

Please sign in to comment.