Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions .github/actions/bec_install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,16 @@ runs:
- name: Install Python dependencies
shell: bash
run: |
pip install uv
uv pip install --system -e ./ophyd_devices[dev]
uv pip install --system -e ./bec/bec_lib[dev]
uv pip install --system -e ./bec/bec_ipython_client[dev]
uv pip install --system -e ./bec/bec_server[dev]
pip install uv build

# Build wheels for each package
python -m build --wheel ./ophyd_devices
python -m build --wheel ./bec/bec_lib
python -m build --wheel ./bec/bec_ipython_client
python -m build --wheel ./bec/bec_server

# Install from wheels with dev dependencies
uv pip install --system ./ophyd_devices[dev] ./ophyd_devices/dist/*.whl
uv pip install --system ./bec/bec_lib[dev] ./bec/bec_lib/dist/*.whl
uv pip install --system ./bec/bec_ipython_client[dev] ./bec/bec_ipython_client/dist/*.whl
uv pip install --system ./bec/bec_server[dev] ./bec/bec_server/dist/*.whl
Loading