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'
|
python-version: '3.13'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
pip install uv
|
python -m pip install --upgrade pip
|
||||||
uv pip install --system -e . --only-binary=:all:
|
pip install -e .
|
||||||
|
|
||||||
- name: Extract functionInputSchema
|
- name: Extract functionInputSchema
|
||||||
id: extract_schema
|
id: extract_schema
|
||||||
|
|||||||
+1
-1
@@ -13,6 +13,6 @@ COPY . /home/speckle
|
|||||||
RUN pip install uv
|
RUN pip install uv
|
||||||
|
|
||||||
# Install your package and dependencies
|
# 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"]
|
CMD ["python", "main.py", "run"]
|
||||||
Reference in New Issue
Block a user