summaryrefslogtreecommitdiff
path: root/numpy/distutils
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2023-04-10 08:38:17 -0600
committerGitHub <noreply@github.com>2023-04-10 08:38:17 -0600
commit340149c538aa8234fcc778315bee149335b50cb7 (patch)
tree9a2ac32b335e84a51f087b37a938abd0105c6c4a /numpy/distutils
parentafcedf4b63f4a94187e6995c2adea0da3bb18e83 (diff)
downloadnumpy-340149c538aa8234fcc778315bee149335b50cb7.tar.gz
MAINT: Fix wrong date in comment.
Diffstat (limited to 'numpy/distutils')
-rw-r--r--numpy/distutils/ccompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py
index 0a9317a3d..66124df94 100644
--- a/numpy/distutils/ccompiler.py
+++ b/numpy/distutils/ccompiler.py
@@ -401,7 +401,7 @@ def CCompiler_customize_cmd(self, cmd, ignore=()):
not (platform.machine() == 'arm64' and sys.platform == 'darwin')
):
# clang defaults to a non-strict floating error point model.
- # However, '-ftrapping-math' is not currently supported (2022-04-08)
+ # However, '-ftrapping-math' is not currently supported (2023-04-08)
# for macosx_arm64.
# Since NumPy and most Python libs give warnings for these, override:
self.compiler.append('-ftrapping-math')