diff --git a/griptapecli/core/skatepark.py b/griptapecli/core/skatepark.py index f2dabe7..3a1b588 100644 --- a/griptapecli/core/skatepark.py +++ b/griptapecli/core/skatepark.py @@ -102,10 +102,12 @@ def build_structure(structure_id: str) -> Structure: ["python3", "-m", "venv", ".venv"], cwd=structure.directory, ) - subprocess.call( + subprocess.run( [ ".venv/bin/pip3", "install", + "--upgrade", + "--force-reinstall", "-r", ( str( diff --git a/pyproject.toml b/pyproject.toml index 63948ec..e31dd7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "griptape-cli" -version = "0.6.0" +version = "0.6.1" description = "CLI for the Griptape Framework and Cloud" authors = ["Griptape "] license = "Apache 2.0"