Skip to content

Commit 3ca5d4c

Browse files
committed
CI: note lockfile and install wheel with deps
Add a comment in the Python CI workflow recommending inclusion of the lock file for caching and validation. Update the smoke-test step to install the built wheel along with its dependencies by removing `--no-deps`. Also include minor whitespace cleanup.
1 parent 21a7e28 commit 3ca5d4c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/python-package.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434

35+
# If we use UV later, the lock file should be included here for caching and validation
3536
- name: Cache pip
3637
uses: actions/cache@v4
3738
with:
@@ -61,7 +62,7 @@ jobs:
6162
- name: Install from wheel & smoke test
6263
run: |
6364
# Install from the built wheel (not from the source tree)
64-
python -m pip install --no-deps dist/*.whl
65+
python -m pip install dist/*.whl
6566
6667
python - <<'PY'
6768
import importlib

0 commit comments

Comments
 (0)