Add version 2.14 to the removed_in list (#62298)

devel is now 2.10, so this needs to be bumped as well.
This commit is contained in:
flowerysong 2019-09-13 15:32:11 -04:00 committed by Matt Martz
parent 05ded87848
commit d933278f3d

View file

@ -157,7 +157,7 @@ deprecation_schema = Schema(
# Deprecation cycle changed at 2.4 (though not retroactively)
# 2.3 -> removed_in: "2.5" + n for docs stub
# 2.4 -> removed_in: "2.8" + n for docs stub
Required('removed_in'): Any("2.2", "2.3", "2.4", "2.5", "2.6", "2.8", "2.9", "2.10", "2.11", "2.12", "2.13"),
Required('removed_in'): Any("2.2", "2.3", "2.4", "2.5", "2.6", "2.8", "2.9", "2.10", "2.11", "2.12", "2.13", "2.14"),
Required('why'): Any(*string_types),
Required('alternative'): Any(*string_types),
'removed': Any(True),