@@ -229,11 +229,10 @@ jobs:
229229 run : |
230230 /opt/python/cp39-cp39/bin/python -m venv ~/virtualenvs/pandas-dev
231231 . ~/virtualenvs/pandas-dev/bin/activate
232- python -m pip install --no-cache-dir --no-deps - U pip wheel setuptools
232+ python -m pip install -U pip wheel setuptools meson[ninja]==1.0.1 meson-python==0.13.1
233233 python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.46.1
234- python setup.py build_ext -q -j$(nproc)
235- python -m pip install --no-cache-dir --no-build-isolation --no-use-pep517 -e .
236- python -m pip list
234+ python -m pip install --no-cache-dir --no-build-isolation -e .
235+ python -m pip list --no-cache-dir
237236 export PANDAS_CI=1
238237 python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
239238 concurrency :
@@ -268,10 +267,9 @@ jobs:
268267 run : |
269268 /opt/python/cp39-cp39/bin/python -m venv ~/virtualenvs/pandas-dev
270269 . ~/virtualenvs/pandas-dev/bin/activate
271- python -m pip install --no-cache-dir --no-deps - U pip wheel setuptools
270+ python -m pip install -U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.0.1
272271 python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.46.1
273- python setup.py build_ext -q -j$(nproc)
274- python -m pip install --no-cache-dir --no-build-isolation --no-use-pep517 -e .
272+ python -m pip install --no-cache-dir --no-build-isolation -e .
275273 python -m pip list --no-cache-dir
276274
277275 - name : Run Tests
@@ -347,8 +345,7 @@ jobs:
347345
348346 - name : Build Pandas
349347 run : |
350- python setup.py build_ext -q -j4
351- python -m pip install -e . --no-build-isolation --no-use-pep517 --no-index
348+ python -m pip install -e . --no-build-isolation --no-index
352349
353350 - name : Build Version
354351 run : |
0 commit comments