Skip to content

Commit

Permalink
Updated package version (#3426)
Browse files Browse the repository at this point in the history
* Updated package version

* Updated docker-compose command

* Updated asyncio version

* Updated version range
  • Loading branch information
vladvildanov authored Nov 8, 2024
1 parent e82c56e commit 21ef4dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 21ef4dd

Please sign in to comment.