Update package installation commands
- Changed pip install command to include `--only-binary=:all:` - Updated workflow and Dockerfile for consistency
This commit is contained in:
@@ -18,7 +18,7 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pip install uv
|
||||
uv pip install --system -e .
|
||||
uv pip install --system -e . --only-binary=:all:
|
||||
|
||||
- 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 .
|
||||
RUN uv pip install --system -e . --only-binary=:all:
|
||||
|
||||
CMD ["python", "main.py", "run"]
|
||||
Reference in New Issue
Block a user