Skip to content

Commit

Permalink
Force reinstall on build (#37)
Browse files Browse the repository at this point in the history
* Force reinstall on build

* Force reinstall on build

* Format

* Clean up logs

---------

Co-authored-by: James Clarendon <[email protected]>
  • Loading branch information
collindutter and SavagePencil authored Aug 20, 2024
1 parent 058c7bd commit 31fea76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion griptapecli/core/skatepark.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "Apache 2.0"
Expand Down

0 comments on commit 31fea76

Please sign in to comment.