From 80ed1dfa7ff6175b89038f98d935f803509cf86b Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 30 Jan 2024 22:01:46 +0100 Subject: Add a numpy dependency with pkg-config and configtool methods These are being added for NumPy 2.0 The implementation closely follows the one for the pybind11 dependency. --- docs/markdown/Dependencies.md | 8 ++++++++ docs/markdown/snippets/numpy-custom-dependency.md | 9 +++++++++ 2 files changed, 17 insertions(+) create mode 100644 docs/markdown/snippets/numpy-custom-dependency.md (limited to 'docs') diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index d412a2526..965a3dde9 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -653,6 +653,14 @@ The `language` keyword may used. `method` may be `auto`, `pkg-config`, `system` or `cmake`. +## NumPy + +*(added 1.4.0)* + +`method` may be `auto`, `pkg-config`, or `config-tool`. +`dependency('numpy')` supports regular use of the NumPy C API. +Use of `numpy.f2py` for binding Fortran code isn't yet supported. + ## pcap *(added 0.42.0)* diff --git a/docs/markdown/snippets/numpy-custom-dependency.md b/docs/markdown/snippets/numpy-custom-dependency.md new file mode 100644 index 000000000..5934180c0 --- /dev/null +++ b/docs/markdown/snippets/numpy-custom-dependency.md @@ -0,0 +1,9 @@ +## New numpy custom dependency + +Support for `dependency('numpy')` was added, via supporting the `numpy-config` tool and +pkg-config support, both of which are available since NumPy 2.0.0. + +Config-tool support is useful because it will work out of the box when +``numpy`` is installed, while the pkg-config file is located inside python's +site-packages, which makes it impossible to use in an out of the box manner +without setting `PKG_CONFIG_PATH`. -- cgit v1.2.3