Skip to content

Commit 2db6932

Browse files
authored
Bump redis-py from 4.4 to 4.5 (#18)
* Bump redis-py from 4.4 to 4.5 and set lowerbound anyio to 3.7 * Bump version to 1.4.8
1 parent c7206dd commit 2db6932

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.bumpversion.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[bumpversion]
2-
current_version = 1.4.7
2+
current_version = 1.4.8
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}-{release}{build}
88
{major}.{minor}.{patch}
99

.pre-commit-config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ repos:
2424
rev: v4.4.0
2525
hooks:
2626
- id: trailing-whitespace
27+
exclude: .bumpversion.cfg
2728
- id: end-of-file-fixer
2829
- id: check-docstring-first
2930
- id: check-json

nwastdlib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#
1414
"""The NWA-stdlib module."""
1515

16-
__version__ = "1.4.7"
16+
__version__ = "1.4.8"
1717

1818
from nwastdlib.f import const, identity
1919

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ classifiers = [
3232
requires = [
3333
"structlog~=22.1.0",
3434
"colorama~=0.4.3",
35-
"redis~=4.4.2"
35+
"redis>=4.5.3, <4.6.0", # Required for anyio 3.7 https://github.com/redis/redis-py/issues/2633
36+
"anyio>=3.7.0",
3637
]
3738
description-file = "README.md"
3839
requires-python = ">=3.9"

0 commit comments

Comments
 (0)