diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 2b62664920..9fab78dfd1 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -26,7 +26,7 @@ permissions: env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} REDIS_IMAGE: redis:7.4-rc2 - REDIS_STACK_IMAGE: redis/redis-stack-server:7.4.0-rc2 + REDIS_STACK_IMAGE: redis/redis-stack-server:7.4.0-v0 jobs: dependency-audit: @@ -80,7 +80,7 @@ jobs: pip install -r requirements.txt pip install -r dev_requirements.txt if [ "${{matrix.connection-type}}" == "hiredis" ]; then - pip install hiredis + pip install "hiredis>=2.0.0,<3.0.0" fi invoke devenv sleep 10 # time to settle @@ -136,7 +136,7 @@ jobs: pip install -r requirements.txt pip install -r dev_requirements.txt if [ "${{matrix.connection-type}}" == "hiredis" ]; then - pip install hiredis + pip install "hiredis>=2.0.0,<3.0.0" fi invoke devenv sleep 10 # time to settle diff --git a/docker-compose.yml b/docker-compose.yml index c8528a7d58..4156c6e47f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -105,7 +105,7 @@ services: - all redis-stack: - image: ${REDIS_STACK_IMAGE:-redis/redis-stack-server:edge} + image: ${REDIS_STACK_IMAGE:-redis/redis-stack-server:latest} container_name: redis-stack ports: - 6479:6379 diff --git a/setup.py b/setup.py index 92f2ef9742..4199b6b7ad 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description_content_type="text/markdown", keywords=["Redis", "key-value store", "database"], license="MIT", - version="5.0.7", + version="5.0.8", packages=find_packages( include=[ "redis", @@ -58,7 +58,7 @@ "Programming Language :: Python :: Implementation :: PyPy", ], extras_require={ - "hiredis": ["hiredis>=1.0.0"], + "hiredis": ["hiredis>1.0.0"], "ocsp": ["cryptography>=36.0.1", "pyopenssl==20.0.1", "requests>=2.26.0"], }, )