From d3c4e37e2be74cbc33e135bdcd416c3268e45098 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Morin Date: Sat, 4 Nov 2023 13:23:41 -0400 Subject: [PATCH] Enable disable_rez_1_compatibility by default Signed-off-by: Jean-Christophe Morin --- src/rez/rezconfig.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/rez/rezconfig.py b/src/rez/rezconfig.py index 4ee304b456..83ba9f862b 100644 --- a/src/rez/rezconfig.py +++ b/src/rez/rezconfig.py @@ -1009,7 +1009,6 @@ # ... optionvars = None - ############################################################################### # Rez-1 Compatibility # @@ -1083,7 +1082,14 @@ # # You should aim to do this - it will mean your packages are more strictly # validated, and you can more easily use future versions of Rez. -disable_rez_1_compatibility = False +# +# .. versionchanged: 2.114.0 +# Now enabled by default. +# +# .. deprecated:: 2.114.0 +# This will be removed in 3.0.0. +# +disable_rez_1_compatibility = True ###############################################################################