Skip to content

Commit 4cbf646

Browse files
test: minimum versions (#1617)
* test minimum versions * don't remove show-deps --------- Co-authored-by: Marco Edward Gorelli <[email protected]>
1 parent dcabda5 commit 4cbf646

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/extremes.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@ jobs:
3131
uv pip install -e ".[dev]" --system
3232
- name: show-deps
3333
run: uv pip freeze
34+
- name: Assert dependencies
35+
run: |
36+
DEPS=$(uv pip freeze)
37+
echo "$DEPS" | grep 'pandas==0.25.3'
38+
echo "$DEPS" | grep 'polars==0.20.3'
39+
echo "$DEPS" | grep 'numpy==1.17.5'
40+
echo "$DEPS" | grep 'pyarrow==11.0.0'
41+
echo "$DEPS" | grep 'scipy==1.5.0'
42+
echo "$DEPS" | grep 'scikit-learn==1.1.0'
3443
- name: Run pytest
3544
run: pytest tests --cov=narwhals --cov=tests --cov-fail-under=50 --runslow
3645

0 commit comments

Comments
 (0)