Skip to content

Commit 21ef4dd

Browse files
authored
Updated package version (#3426)
* Updated package version * Updated docker-compose command * Updated asyncio version * Updated version range
1 parent e82c56e commit 21ef4dd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ invoke==1.7.3
77
mock==4.0.3
88
packaging>=20.4
99
pytest
10-
pytest-asyncio
10+
pytest-asyncio>=0.21.0,<0.24.0
1111
pytest-cov
1212
pytest-timeout
1313
ujson>=4.2.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
long_description_content_type="text/markdown",
99
keywords=["Redis", "key-value store", "database"],
1010
license="MIT",
11-
version="5.0.8",
11+
version="5.0.9",
1212
packages=find_packages(
1313
include=[
1414
"redis",

tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def devenv(c):
1414
"""Brings up the test environment, by wrapping docker compose."""
1515
clean(c)
16-
cmd = "docker-compose --profile all up -d --build"
16+
cmd = "docker compose --profile all up -d --build"
1717
run(cmd)
1818

1919

@@ -85,7 +85,7 @@ def clean(c):
8585
shutil.rmtree("build")
8686
if os.path.isdir("dist"):
8787
shutil.rmtree("dist")
88-
run("docker-compose --profile all rm -s -f")
88+
run("docker compose --profile all rm -s -f")
8989

9090

9191
@task

0 commit comments

Comments
 (0)