Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BLD: update meson and meson-python versions for 1.9.0 release #16671

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/macos_meson.yml
Expand Up @@ -97,7 +97,7 @@ jobs:
shell: bash -l {0}
run: |
conda activate scipy-dev
python -m pip install meson==0.61.1
python -m pip install meson==0.62.2
# Python.org installers still use 10.9, so let's use that too. Note
# that scikit-learn already changed to 10.13 in Jan 2021, so increasing
# this number in the future (if needed) should not be a problem.
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Expand Up @@ -6,7 +6,7 @@ project(
# tools/version_utils.py
version: '1.9.0rc2',
license: 'BSD-3',
meson_version: '>= 0.60,< 0.66',
meson_version: '>= 0.62.2',
default_options: [
'buildtype=debugoptimized',
'c_std=c99',
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Expand Up @@ -10,7 +10,8 @@
[build-system]
build-backend = 'mesonpy'
requires = [
"meson-python>=0.5.0,<0.7.0",
"meson-python>=0.7.0,<0.8.0",
"meson==0.62.2", # workaround for wheel build issue, see https://github.com/FFY00/meson-python/issues/95
"Cython>=0.29.21,<3.0",
"pybind11>=2.4.3,<2.10.0",
"pythran>=0.9.12,<0.12.0",
Expand Down