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:
@@ -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
@@ -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"]
|
||||
Reference in New Issue
Block a user