@@ -137,11 +137,11 @@ mod tests {
137
137
name = "alpha"
138
138
classifiers = [
139
139
"Programming Language :: Python :: 3 :: Only",
140
- "Programming Language :: Python :: 3.8",
141
140
"Programming Language :: Python :: 3.9",
142
141
"Programming Language :: Python :: 3.10",
143
142
"Programming Language :: Python :: 3.11",
144
143
"Programming Language :: Python :: 3.12",
144
+ "Programming Language :: Python :: 3.13",
145
145
]
146
146
dependencies = [
147
147
"e>=1.5",
@@ -152,14 +152,14 @@ mod tests {
152
152
"# } ,
153
153
2 ,
154
154
false ,
155
- ( 3 , 12 ) ,
155
+ ( 3 , 13 ) ,
156
156
) ]
157
157
#[ case:: empty(
158
158
indoc ! { r"" } ,
159
159
"\n " ,
160
160
2 ,
161
161
true ,
162
- ( 3 , 12 )
162
+ ( 3 , 13 )
163
163
) ]
164
164
#[ case:: scripts(
165
165
indoc ! { r#"
@@ -171,14 +171,14 @@ mod tests {
171
171
[project]
172
172
classifiers = [
173
173
"Programming Language :: Python :: 3 :: Only",
174
- "Programming Language :: Python :: 3.8 ",
174
+ "Programming Language :: Python :: 3.9 ",
175
175
]
176
176
scripts.a = "b"
177
177
scripts.c = "d"
178
178
"# } ,
179
179
2 ,
180
180
true ,
181
- ( 3 , 8 )
181
+ ( 3 , 9 )
182
182
) ]
183
183
#[ case:: subsubtable(
184
184
indoc ! { r"
@@ -196,7 +196,7 @@ mod tests {
196
196
[project]
197
197
classifiers = [
198
198
"Programming Language :: Python :: 3 :: Only",
199
- "Programming Language :: Python :: 3.8 ",
199
+ "Programming Language :: Python :: 3.9 ",
200
200
]
201
201
202
202
[tool.coverage]
@@ -210,7 +210,7 @@ mod tests {
210
210
"# } ,
211
211
2 ,
212
212
true ,
213
- ( 3 , 8 )
213
+ ( 3 , 9 )
214
214
) ]
215
215
#[ case:: array_of_tables(
216
216
indoc ! { r#"
@@ -240,7 +240,7 @@ mod tests {
240
240
"# } ,
241
241
2 ,
242
242
true ,
243
- ( 3 , 8 )
243
+ ( 3 , 9 )
244
244
) ]
245
245
#[ case:: unstable_issue_18(
246
246
indoc ! { r#"
@@ -270,7 +270,7 @@ mod tests {
270
270
"# } ,
271
271
2 ,
272
272
true ,
273
- ( 3 , 8 )
273
+ ( 3 , 9 )
274
274
) ]
275
275
fn test_format_toml (
276
276
#[ case] start : & str ,
@@ -284,7 +284,7 @@ mod tests {
284
284
indent,
285
285
keep_full_version,
286
286
max_supported_python,
287
- min_supported_python : ( 3 , 8 ) ,
287
+ min_supported_python : ( 3 , 9 ) ,
288
288
} ;
289
289
let got = format_toml ( start, & settings) ;
290
290
assert_eq ! ( got, expected) ;
@@ -307,8 +307,8 @@ mod tests {
307
307
column_width : 1 ,
308
308
indent : 2 ,
309
309
keep_full_version : false ,
310
- max_supported_python : ( 3 , 8 ) ,
311
- min_supported_python : ( 3 , 8 ) ,
310
+ max_supported_python : ( 3 , 9 ) ,
311
+ min_supported_python : ( 3 , 9 ) ,
312
312
} ;
313
313
let got = format_toml ( start. as_str ( ) , & settings) ;
314
314
let expected = read_to_string ( data. join ( "ruff-order.expected.toml" ) ) . unwrap ( ) ;
@@ -336,8 +336,8 @@ mod tests {
336
336
column_width : 80 ,
337
337
indent : 4 ,
338
338
keep_full_version : false ,
339
- max_supported_python : ( 3 , 12 ) ,
340
- min_supported_python : ( 3 , 12 ) ,
339
+ max_supported_python : ( 3 , 13 ) ,
340
+ min_supported_python : ( 3 , 13 ) ,
341
341
} ;
342
342
let got = format_toml ( start, & settings) ;
343
343
let expected = indoc ! { r#"
@@ -349,7 +349,7 @@ mod tests {
349
349
name = "beta"
350
350
classifiers = [
351
351
"Programming Language :: Python :: 3 :: Only",
352
- "Programming Language :: Python :: 3.12 ",
352
+ "Programming Language :: Python :: 3.13 ",
353
353
]
354
354
dependencies = [
355
355
"e>=1.5",
0 commit comments