summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-03-21 15:31:47 -0600
committerGitHub <noreply@github.com>2021-03-21 15:31:47 -0600
commit5e53c94de47ab5df05778283c0012adf03793dae (patch)
tree1beaf10e3430c39aa259eba059326061015f0768 /doc
parent2bd483641925aa89e3089236191ea3a38da830d4 (diff)
parenta2f7cd1e8510a26edc22297d67729ea6fbf922e4 (diff)
downloadnumpy-5e53c94de47ab5df05778283c0012adf03793dae.tar.gz
Merge pull request #18660 from rgommers/relnote-xlocale
DOC: add release note for removal of /usr/include from include paths
Diffstat (limited to 'doc')
-rw-r--r--doc/release/upcoming_changes/18658.compatibility.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/18658.compatibility.rst b/doc/release/upcoming_changes/18658.compatibility.rst
new file mode 100644
index 000000000..bb4052b9d
--- /dev/null
+++ b/doc/release/upcoming_changes/18658.compatibility.rst
@@ -0,0 +1,6 @@
+``/usr/include`` removed from default include paths
+---------------------------------------------------
+The default include paths when building a package with ``numpy.distutils`` no
+longer include ``/usr/include``. This path is normally added by the compiler,
+and hardcoding it can be problematic. In case this causes a problem, please
+open an issue. A workaround is documented in PR 18658.