Update dependency installation commands

- Changed `uv pip sync` to `uv sync` in workflows
- Updated Dockerfile to reflect the same command change
This commit is contained in:
Jonathon Broughton
2025-03-24 17:38:17 +00:00
parent 7023f41a74
commit dacdbaebda
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ jobs:
- name: Install dependencies
run: |
pip install uv
uv pip sync --system uv.lock
uv sync --system uv.lock
- name: Extract functionInputSchema
id: extract_schema
+1 -1
View File
@@ -13,6 +13,6 @@ COPY . /home/speckle
RUN pip install uv
# Install your package and dependencies
RUN uv pip sync --system uv.lock
RUN uv sync --system
CMD ["python", "main.py", "run"]