Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Bump redis-py from 4.4 to 4.5 #18

Merged
merged 2 commits into from
Jun 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 1.4.7
current_version = 1.4.8
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}

1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -24,6 +24,7 @@ repos:
rev: v4.4.0
hooks:
- id: trailing-whitespace
exclude: .bumpversion.cfg
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-json
2 changes: 1 addition & 1 deletion nwastdlib/__init__.py
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
#
"""The NWA-stdlib module."""

__version__ = "1.4.7"
__version__ = "1.4.8"

from nwastdlib.f import const, identity

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -32,7 +32,8 @@ classifiers = [
requires = [
"structlog~=22.1.0",
"colorama~=0.4.3",
"redis~=4.4.2"
"redis>=4.5.3, <4.6.0", # Required for anyio 3.7 https://github.com/redis/redis-py/issues/2633
"anyio>=3.7.0",
]
description-file = "README.md"
requires-python = ">=3.9"