Update package installation commands

- Changed pip install command to use --system flag
- Updated workflow and Dockerfile for consistency
This commit is contained in:
Jonathon Broughton
2025-03-24 12:31:43 +00:00
parent 6186ee139f
commit 690e6f7d13
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -18,7 +18,8 @@ jobs:
- name: Install dependencies
run: |
pip install uv
uv pip install -e .
uv pip install --system -e .
- name: Extract functionInputSchema
id: extract_schema
run: |
+1 -1
View File
@@ -13,6 +13,6 @@ COPY . /home/speckle
RUN pip install uv
# Install your package and dependencies
RUN uv pip install -e .
RUN uv pip install --system -e .
CMD ["python", "main.py", "run"]