99 minimum_versions :
1010 strategy :
1111 matrix :
12- python-version : ["3.8 "]
12+ python-version : ["3.9 "]
1313 os : [ubuntu-latest]
1414
1515 runs-on : ${{ matrix.os }}
2525 cache-suffix : ${{ matrix.python-version }}
2626 cache-dependency-glob : " pyproject.toml"
2727 - name : install-minimum-versions
28- run : uv pip install pipdeptree tox virtualenv setuptools pandas==0.25 .3 polars==0.20.3 numpy==1.17.5 pyarrow==11.0.0 "pyarrow-stubs<17" scipy==1.5 .0 scikit-learn==1.1.0 duckdb==1.0 tzdata backports.zoneinfo --system
28+ run : uv pip install pipdeptree tox virtualenv setuptools pandas==1.1 .3 polars==0.20.3 numpy==1.19.3 pyarrow==11.0.0 "pyarrow-stubs<17" scipy==1.6 .0 scikit-learn==1.1.0 duckdb==1.0 tzdata --system
2929 - name : install-reqs
3030 run : |
3131 uv pip install -e . --group tests --system
@@ -34,11 +34,11 @@ jobs:
3434 - name : Assert dependencies
3535 run : |
3636 DEPS=$(uv pip freeze)
37- echo "$DEPS" | grep 'pandas==0.25 .3'
37+ echo "$DEPS" | grep 'pandas==1.1 .3'
3838 echo "$DEPS" | grep 'polars==0.20.3'
39- echo "$DEPS" | grep 'numpy==1.17.5 '
39+ echo "$DEPS" | grep 'numpy==1.19.3 '
4040 echo "$DEPS" | grep 'pyarrow==11.0.0'
41- echo "$DEPS" | grep 'scipy==1.5 .0'
41+ echo "$DEPS" | grep 'scipy==1.6 .0'
4242 echo "$DEPS" | grep 'scikit-learn==1.1.0'
4343 echo "$DEPS" | grep 'duckdb==1.0'
4444 - name : Run pytest
4747 pretty_old_versions :
4848 strategy :
4949 matrix :
50- python-version : ["3.8 "]
50+ python-version : ["3.9 "]
5151 os : [ubuntu-latest]
5252 runs-on : ${{ matrix.os }}
5353 steps :
6262 cache-suffix : ${{ matrix.python-version }}
6363 cache-dependency-glob : " pyproject.toml"
6464 - name : install-pretty-old-versions
65- run : uv pip install pipdeptree tox virtualenv setuptools pandas==1.1.5 polars==0.20.3 numpy==1.17.5 pyarrow==11.0.0 "pyarrow-stubs<17" scipy==1.5 .0 scikit-learn==1.1.0 duckdb==1.0 tzdata backports.zoneinfo --system
65+ run : uv pip install pipdeptree tox virtualenv setuptools pandas==1.1.5 polars==0.20.3 numpy==1.19.3 pyarrow==11.0.0 "pyarrow-stubs<17" scipy==1.6 .0 scikit-learn==1.1.0 duckdb==1.0 tzdata --system
6666 - name : install-reqs
6767 run : uv pip install -e . --group tests --system
6868 - name : show-deps
7474 DEPS=$(uv pip freeze)
7575 echo "$DEPS" | grep 'pandas==1.1.5'
7676 echo "$DEPS" | grep 'polars==0.20.3'
77- echo "$DEPS" | grep 'numpy==1.17.5 '
77+ echo "$DEPS" | grep 'numpy==1.19.3 '
7878 echo "$DEPS" | grep 'pyarrow==11.0.0'
79- echo "$DEPS" | grep 'scipy==1.5 .0'
79+ echo "$DEPS" | grep 'scipy==1.6 .0'
8080 echo "$DEPS" | grep 'scikit-learn==1.1.0'
8181 echo "$DEPS" | grep 'duckdb==1.0'
8282 - name : Run pytest
0 commit comments