We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcabda5 commit 4cbf646Copy full SHA for 4cbf646
.github/workflows/extremes.yml
@@ -31,6 +31,15 @@ jobs:
31
uv pip install -e ".[dev]" --system
32
- name: show-deps
33
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'
43
- name: Run pytest
44
run: pytest tests --cov=narwhals --cov=tests --cov-fail-under=50 --runslow
45
0 commit comments