Skip to content

Commit

Permalink
poetry -> pip + venv
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeicor committed Nov 27, 2023
1 parent 9493eb5 commit ae6232c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 732 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
- uses: "actions/setup-python@v4"
with:
python-version: "3.11"
cache: "poetry"
cache: "pip"

- run: "poetry install --no-interaction --no-root"
- run: "pip install -r requirements.txt"

- uses: "Yeicor/[email protected]"
with:
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"match": "\\.py$",
"isAsync": false,
"cmd": "poetry run python ${file}"
"cmd": "venv/bin/python ${file}"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@
print("Cannot show model, exporting to STL instead (%s)" % ex)

if export:
obj.export_stl('boot-protector.stl')
obj.part.export_stl('boot-protector.stl')
Loading

0 comments on commit ae6232c

Please sign in to comment.