diff --git a/dev_requirements.txt b/dev_requirements.txt index fbbb58f107..9c8a836e51 100644 --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -7,7 +7,7 @@ invoke==1.7.3 mock==4.0.3 packaging>=20.4 pytest -pytest-asyncio +pytest-asyncio>=0.21.0,<0.24.0 pytest-cov pytest-timeout ujson>=4.2.0 diff --git a/setup.py b/setup.py index 4199b6b7ad..9584dcd1f8 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.8", + version="5.0.9", packages=find_packages( include=[ "redis", diff --git a/tasks.py b/tasks.py index 7f26081150..c80ec15a85 100644 --- a/tasks.py +++ b/tasks.py @@ -13,7 +13,7 @@ def devenv(c): """Brings up the test environment, by wrapping docker compose.""" clean(c) - cmd = "docker-compose --profile all up -d --build" + cmd = "docker compose --profile all up -d --build" run(cmd) @@ -85,7 +85,7 @@ def clean(c): shutil.rmtree("build") if os.path.isdir("dist"): shutil.rmtree("dist") - run("docker-compose --profile all rm -s -f") + run("docker compose --profile all rm -s -f") @task