@@ -235,9 +235,9 @@ jobs:
235235 /opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
236236 . ~/virtualenvs/pandas-dev/bin/activate
237237 python -m pip install --no-cache-dir -U pip wheel setuptools meson[ninja]==1.2.1 meson-python==0.13.1
238- python -m pip install numpy --config-settings=setup -args="-Dallow-noblas=true"
239- python -m pip install --no-cache-dir versioneer[toml] cython python-dateutil pytz pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84.0
240- python -m pip install --no-cache-dir --no-build-isolation -e . --config-settings=setup -args="--werror"
238+ python -m pip install numpy -Csetup -args="-Dallow-noblas=true"
239+ python -m pip install --no-cache-dir versioneer[toml] cython python-dateutil pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84.0
240+ python -m pip install --no-cache-dir --no-build-isolation -e . -Csetup -args="--werror"
241241 python -m pip list --no-cache-dir
242242 export PANDAS_CI=1
243243 python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
@@ -274,8 +274,8 @@ jobs:
274274 /opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
275275 . ~/virtualenvs/pandas-dev/bin/activate
276276 python -m pip install --no-cache-dir -U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.2.1
277- python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84.0
278- python -m pip install --no-cache-dir --no-build-isolation -e . --config-settings=setup -args="--werror"
277+ python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84.0
278+ python -m pip install --no-cache-dir --no-build-isolation -e . -Csetup -args="--werror"
279279 python -m pip list --no-cache-dir
280280
281281 - name : Run Tests
@@ -295,7 +295,7 @@ jobs:
295295 # In general, this will remain frozen(present, but not running) until:
296296 # - The next unreleased Python version has released beta 1
297297 # - This version should be available on GitHub Actions.
298- # - Our required build/runtime dependencies(numpy, pytz, Cython, python-dateutil)
298+ # - Our required build/runtime dependencies(numpy, Cython, python-dateutil)
299299 # support that unreleased Python version.
300300 # To unfreeze, comment out the ``if: false`` condition, and make sure you update
301301 # the name of the workflow and Python version in actions/setup-python ``python-version:``
@@ -348,8 +348,8 @@ jobs:
348348 python -m pip install --upgrade pip setuptools wheel meson[ninja]==1.2.1 meson-python==0.13.1
349349 python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
350350 python -m pip install versioneer[toml]
351- python -m pip install python-dateutil pytz tzdata cython hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
352- python -m pip install -ve . --no-build-isolation --no-index --no-deps --config-settings=setup -args="--werror"
351+ python -m pip install python-dateutil tzdata cython hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
352+ python -m pip install -ve . --no-build-isolation --no-index --no-deps -Csetup -args="--werror"
353353 python -m pip list
354354
355355 - name : Run Tests
@@ -392,7 +392,7 @@ jobs:
392392 python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy cython
393393 python -m pip install versioneer[toml]
394394 python -m pip install python-dateutil pytz tzdata hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
395- python -m pip install -ve . --no-build-isolation --no-index --no-deps --config-settings=setup -args="--werror"
395+ python -m pip install -ve . --no-build-isolation --no-index --no-deps -Csetup -args="--werror"
396396 python -m pip list
397397
398398 - name : Run Tests
0 commit comments