Skip to content

Commit 2cf1927

Browse files
[#9] Use Basilisk nightly wheels in CI example build
1 parent d36d0a2 commit 2cf1927

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,13 @@ jobs:
129129
name: wheel-${{ matrix.os }}-py${{ matrix.python }}
130130
path: dist
131131

132-
- name: Install bsk-sdk wheel and matching Basilisk
133-
# Install the locally built SDK wheel first, then read its embedded
134-
# Basilisk sync stamp so CI tests the plugin against the exact matching
135-
# bsk release instead of whichever version happens to be latest on PyPI.
132+
- name: Install bsk-sdk wheel and Basilisk nightly
136133
run: |
137134
pip install dist/*.whl --force-reinstall
138-
BSK_VERSION=$(python -c "import bsk_sdk; print(bsk_sdk.bsk_version(), end='')")
139-
pip install numpy "bsk==${BSK_VERSION}"
135+
pip install --pre \
136+
--index-url https://avslab.github.io/basilisk/nightly/ \
137+
--extra-index-url https://pypi.org/simple/ \
138+
numpy bsk
140139
shell: bash
141140

142141
- name: Build example plugin wheel

0 commit comments

Comments
 (0)