@@ -33,10 +33,10 @@ jobs:
3333 with :
3434 environment-file : ci/environment-${{ matrix.CONDA_ENV }}.yml
3535
36- - name : pip-install
36+ - name : build-ext
3737 shell : bash -l {0}
3838 run : |
39- pip install -e . --no-deps
39+ python setup.py build_ext --inplace
4040
4141 - name : Run Tests
4242 shell : bash -l {0}
@@ -69,10 +69,10 @@ jobs:
6969 with :
7070 environment-file : ci/environment-${{ matrix.CONDA_ENV }}-pandas3.yml
7171
72- - name : pip-install
72+ - name : build-ext
7373 shell : bash -l {0}
7474 run : |
75- pip install -e . --no-deps
75+ python setup.py build_ext --inplace
7676
7777 - name : Run Tests
7878 shell : bash -l {0}
@@ -105,10 +105,10 @@ jobs:
105105 with :
106106 environment-file : ci/environment-${{ matrix.CONDA_ENV }}.yml
107107
108- - name : pip-install
108+ - name : build-ext
109109 shell : bash -l {0}
110110 run : |
111- pip install -e . --no-deps
111+ python setup.py build_ext --inplace
112112
113113 - name : Run Tests
114114 shell : bash -l {0}
@@ -153,8 +153,8 @@ jobs:
153153 pip install hypothesis
154154 pip install pytest-localserver pytest-xdist pytest-asyncio
155155 pip install meson-python versioneer # Needed for pandas build
156- pip install -e . --no-deps # Install fastparquet
157- pip install -e ./pandas --no-build-isolation -C compile-args="-j4"
156+ python setup.py build_ext --inplace
157+ python -m pip install ./pandas --no-build-isolation -C compile-args="-j4"
158158
159159 - name : Run Tests
160160 shell : bash -l {0}
@@ -184,10 +184,10 @@ jobs:
184184 with :
185185 environment-file : ci/environment-py310win.yml
186186
187- - name : pip-install
187+ - name : build-ext
188188 shell : bash -l {0}
189189 run : |
190- pip install -e . --no-deps
190+ python setup.py build_ext --inplace
191191
192192 - name : Run Tests
193193 shell : bash -l {0}
0 commit comments