@@ -1090,7 +1090,7 @@ class Inner(Enum):
1090
1090
)
1091
1091
1092
1092
@unittest .skipIf (
1093
- python_version < (3 , 13 ),
1093
+ python_version < (3 , 14 ),
1094
1094
'inner classes are still members' ,
1095
1095
)
1096
1096
def test_nested_classes_in_enum_are_not_members (self ):
@@ -4261,8 +4261,8 @@ class Color(Enum):
4261
4261
self .assertEqual (Color .green .value , 3 )
4262
4262
4263
4263
@unittest .skipIf (
4264
- python_version < (3 , 13 ),
4265
- 'mixed types with auto() will raise in 3.13 ' ,
4264
+ python_version < (3 , 14 ),
4265
+ 'mixed types with auto() will raise in the future ' ,
4266
4266
)
4267
4267
def test_auto_garbage_fail (self ):
4268
4268
with self .assertRaisesRegex (TypeError , 'will require all values to be sortable' ):
@@ -4271,8 +4271,8 @@ class Color(Enum):
4271
4271
blue = auto ()
4272
4272
4273
4273
@unittest .skipIf (
4274
- python_version < (3 , 13 ),
4275
- 'mixed types with auto() will raise in 3.13 ' ,
4274
+ python_version < (3 , 14 ),
4275
+ 'mixed types with auto() will raise in the future ' ,
4276
4276
)
4277
4277
def test_auto_garbage_corrected_fail (self ):
4278
4278
with self .assertRaisesRegex (TypeError , 'will require all values to be sortable' ):
@@ -4303,8 +4303,8 @@ def _generate_next_value_(name, start, count, last):
4303
4303
self .assertEqual (Color .blue .value , 'blue' )
4304
4304
4305
4305
@unittest .skipIf (
4306
- python_version < (3 , 13 ),
4307
- 'auto() will return highest value + 1 in 3.13 ' ,
4306
+ python_version < (3 , 14 ),
4307
+ 'auto() will return highest value + 1 in the future ' ,
4308
4308
)
4309
4309
def test_auto_with_aliases (self ):
4310
4310
class Color (Enum ):
0 commit comments