@@ -229,11 +229,10 @@ jobs:
229
229
run : |
230
230
/opt/python/cp39-cp39/bin/python -m venv ~/virtualenvs/pandas-dev
231
231
. ~/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
233
233
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
237
236
export PANDAS_CI=1
238
237
python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
239
238
concurrency :
@@ -268,10 +267,9 @@ jobs:
268
267
run : |
269
268
/opt/python/cp39-cp39/bin/python -m venv ~/virtualenvs/pandas-dev
270
269
. ~/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
272
271
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 .
275
273
python -m pip list --no-cache-dir
276
274
277
275
- name : Run Tests
@@ -347,8 +345,7 @@ jobs:
347
345
348
346
- name : Build Pandas
349
347
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
352
349
353
350
- name : Build Version
354
351
run : |
0 commit comments