diff options
| author | Marc Durdin <marc@durdin.net> | 2024-05-24 11:38:23 +1000 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-05-24 18:27:59 -0400 |
| commit | 0c802d260c98f990a32ad22f55a055ab65779ccb (patch) | |
| tree | d0647075d94fdd89df43c55c17f2446c55ef4140 | |
| parent | d57ca7d2a21b70bc5a9659c51bc345f539ccc6c9 (diff) | |
| download | meson-0c802d260c98f990a32ad22f55a055ab65779ccb.tar.gz | |
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
| -rw-r--r-- | mesonbuild/interpreter/interpreter.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py index eb6783c64..67c000c2c 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', |
