Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:
run: |
/opt/python/cp313-cp313/bin/python -m venv ~/virtualenvs/pandas-dev
. ~/virtualenvs/pandas-dev/bin/activate
python -m pip install --no-cache-dir -U pip wheel meson[ninja]==1.2.3 meson-python==0.18.0
python -m pip install --no-cache-dir -U pip wheel meson[ninja]==1.3.0 meson-python==0.18.0
python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
python -m pip install --no-cache-dir versioneer[toml] cython python-dateutil pytest>=8.3.4 pytest-xdist>=3.6.1 hypothesis>=6.116.0 pytest-cov
python -m pip install --no-cache-dir --no-build-isolation -e . -Csetup-args="--werror"
Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:
run: |
/opt/python/cp313-cp313/bin/python -m venv ~/virtualenvs/pandas-dev
. ~/virtualenvs/pandas-dev/bin/activate
python -m pip install --no-cache-dir -U pip wheel meson-python==0.18.0 meson[ninja]==1.2.3
python -m pip install --no-cache-dir -U pip wheel meson-python==0.18.0 meson[ninja]==1.3.0
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytest>=8.3.4 pytest-xdist>=3.6.1 hypothesis>=6.116.0 pytest-cov
python -m pip install --no-cache-dir --no-build-isolation -e . -Csetup-args="--werror"
python -m pip list --no-cache-dir
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
- name: Build Environment
run: |
python --version
python -m pip install --upgrade pip wheel meson[ninja]==1.2.3 meson-python==0.18.0
python -m pip install --upgrade pip wheel meson[ninja]==1.3.0 meson-python==0.18.0
python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
python -m pip install versioneer[toml] python-dateutil tzdata cython hypothesis>=6.116.0 pytest>=8.3.4 pytest-xdist>=3.6.1 pytest-cov
python -m pip install -ve . --no-build-isolation --no-index --no-deps -Csetup-args="--werror"
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/actions-311-minimum_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
# build dependencies
- versioneer
- cython<4.0.0a0
- meson=1.2.3
- meson=1.3.0
- meson-python=0.18.0

# test dependencies
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
# build dependencies
- versioneer
- cython>=3.1.0,<4.0.0a0
- meson>=1.2.3,<2
- meson>=1.3.0,<2
- meson-python>=0.18.0,<1

# test dependencies
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project(
'cython',
version: run_command(['generate_version.py', '--print'], check: true).stdout().strip(),
license: 'BSD-3',
meson_version: '>=1.2.3',
meson_version: '>=1.3.0',
default_options: [
'buildtype=release',
'c_std=c17',
Expand Down
50 changes: 25 additions & 25 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "pandas"
# Build dependencies
versioneer = ">=0.29"
cython = ">3.1.0,<4.0.0a0"
meson = ">=1.2.3,<2"
meson = ">=1.3.0,<2"
meson-python = ">=0.19.0,<1"
c-compiler = "*"
cxx-compiler = "*"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# See https://github.com/scipy/scipy/pull/12940 for the AIX issue.
requires = [
"meson-python>=0.19.0,<1",
"meson>=1.2.3,<2",
"meson>=1.3.0,<2",
"wheel",
"Cython>3.1.0,<4.0.0a0", # Note: sync with environment.yml and asv.conf.json
# Force numpy higher than 2.0, so that built wheels are compatible
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pip
versioneer[toml]
cython>=3.1.0,<4.0.0a0
meson[ninja]>=1.2.3,<2
meson[ninja]>=1.3.0,<2
meson-python>=0.18.0,<1
pytest>=8.3.4
pytest-cov
Expand Down
Loading