File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 24
24
25
25
is_posix = os .name == "posix"
26
26
27
+ py313 = sys .version_info >= (3 , 13 )
27
28
py311 = sys .version_info >= (3 , 11 )
28
29
py310 = sys .version_info >= (3 , 10 )
29
30
py39 = sys .version_info >= (3 , 9 )
Original file line number Diff line number Diff line change @@ -407,15 +407,19 @@ def requirements():
407
407
imports = exclusions .skip_if (
408
408
requirements , "black and zimports are required for this test"
409
409
)
410
- version = exclusions .only_if (
410
+ version_low = exclusions .only_if (
411
411
lambda _ : compat .py311 , "python 3.11 is required"
412
412
)
413
413
414
+ version_high = exclusions .only_if (
415
+ lambda _ : not compat .py313 , "python 3.13 does not work right now"
416
+ )
417
+
414
418
sqlalchemy = exclusions .only_if (
415
419
lambda _ : sqla_compat .sqla_2 , "sqlalchemy 2 is required"
416
420
)
417
421
418
- return imports + version + sqlalchemy
422
+ return imports + version_low + version_high + sqlalchemy
419
423
420
424
@property
421
425
def reflect_indexes_with_expressions (self ):
You can’t perform that action at this time.
0 commit comments