Update dependency installation commands

- Changed pip install commands to upgrade pip first
- Simplified installation of the package in workflows and Dockerfile
This commit is contained in:
Jonathon Broughton
2025-03-24 16:37:03 +00:00
parent 774c412efc
commit d78bd1f8fc
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -17,8 +17,8 @@ jobs:
python-version: '3.13'
- name: Install dependencies
run: |
pip install uv
uv pip install --system -e . --only-binary=:all:
python -m pip install --upgrade pip
pip install -e .
- 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 install --system -e . --only-binary=:all:
RUN python -m pip install --upgrade pip; pip install -e .
CMD ["python", "main.py", "run"]