|
21 | 21 | # and we give us three weeks of buffer, leading to release date + 6 + 6 + 3 |
22 | 22 | _RUST_SUPPORT_OVERLAP: datetime.timedelta = datetime.timedelta(weeks=6 + 6 + 3) |
23 | 23 | _RUST_SUPPORT_ENDS = { |
| 24 | + "1.93": datetime.date(2026, 1, 22) + _RUST_SUPPORT_OVERLAP, |
24 | 25 | "1.92": datetime.date(2025, 12, 11) + _RUST_SUPPORT_OVERLAP, |
25 | 26 | "1.91": datetime.date(2025, 10, 30) + _RUST_SUPPORT_OVERLAP, |
26 | 27 | "1.90": datetime.date(2025, 9, 18) + _RUST_SUPPORT_OVERLAP, |
|
34 | 35 | "1.82": datetime.date(2024, 10, 17) + _RUST_SUPPORT_OVERLAP, |
35 | 36 | "1.81": datetime.date(2024, 9, 5) + _RUST_SUPPORT_OVERLAP, |
36 | 37 | "1.80": datetime.date(2024, 7, 25) + _RUST_SUPPORT_OVERLAP, |
37 | | - "1.79": datetime.date(2024, 6, 13) + _RUST_SUPPORT_OVERLAP, |
38 | | - "1.78": datetime.date(2024, 5, 2) + _RUST_SUPPORT_OVERLAP, |
39 | | - "1.77": datetime.date(2024, 3, 21) + _RUST_SUPPORT_OVERLAP, |
40 | | - "1.76": datetime.date(2024, 2, 8) + _RUST_SUPPORT_OVERLAP, |
41 | | - "1.75": datetime.date(2023, 12, 28) + _RUST_SUPPORT_OVERLAP, |
42 | 38 | } |
43 | 39 |
|
44 | 40 | # ensure that the **latest** rust version is the last one! |
45 | 41 | _RUST_VERSIONS: list[str] = ["1.91", "1.92"] |
46 | 42 |
|
47 | 43 | _RUST_SL16_VERSIONS: list[str] = ["1.91", "1.92"] |
48 | 44 |
|
49 | | -_RUST_TW_VERSIONS: list[str] = ["1.91", "1.92"] |
| 45 | +_RUST_TW_VERSIONS: list[str] = ["1.92", "1.93"] |
50 | 46 |
|
51 | 47 |
|
52 | 48 | def _rust_is_stable_version(os_version: OsVersion, rust_version: str) -> bool: |
|
0 commit comments