From 0c802d260c98f990a32ad22f55a055ab65779ccb Mon Sep 17 00:00:00 2001 From: Marc Durdin Date: Fri, 24 May 2024 11:38:23 +1000 Subject: remove deprecation warning for `configure_file` kwarg 'copy' `configure_file` kwarg `copy` runs at configure time, whereas `fs.copyfile` runs at build time. Both have use cases, so this undeprecates the `configure_file` version. Fixes: #12792 --- mesonbuild/interpreter/interpreter.py | 1 - 1 file changed, 1 deletion(-) (limited to 'mesonbuild') diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py index eb6783c..67c000c 100644 --- a/mesonbuild/interpreter/interpreter.py +++ b/mesonbuild/interpreter/interpreter.py @@ -2585,7 +2585,6 @@ class Interpreter(InterpreterBase, HoldableObject): ), KwargInfo( 'copy', bool, default=False, since='0.47.0', - deprecated='0.64.0', deprecated_message='Use fs.copyfile instead', ), KwargInfo('encoding', str, default='utf-8', since='0.47.0'), KwargInfo('format', str, default='meson', since='0.46.0', -- cgit v1.1