File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments