Skip to content

Commit a49e030

Browse files
authored
Merge pull request #3370 from SUSE/rust193
Set TW to rust 1.93
2 parents 3ed981c + e9b37b2 commit a49e030

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/bci_build/package/rust.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# and we give us three weeks of buffer, leading to release date + 6 + 6 + 3
2222
_RUST_SUPPORT_OVERLAP: datetime.timedelta = datetime.timedelta(weeks=6 + 6 + 3)
2323
_RUST_SUPPORT_ENDS = {
24+
"1.93": datetime.date(2026, 1, 22) + _RUST_SUPPORT_OVERLAP,
2425
"1.92": datetime.date(2025, 12, 11) + _RUST_SUPPORT_OVERLAP,
2526
"1.91": datetime.date(2025, 10, 30) + _RUST_SUPPORT_OVERLAP,
2627
"1.90": datetime.date(2025, 9, 18) + _RUST_SUPPORT_OVERLAP,
@@ -34,19 +35,14 @@
3435
"1.82": datetime.date(2024, 10, 17) + _RUST_SUPPORT_OVERLAP,
3536
"1.81": datetime.date(2024, 9, 5) + _RUST_SUPPORT_OVERLAP,
3637
"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,
4238
}
4339

4440
# ensure that the **latest** rust version is the last one!
4541
_RUST_VERSIONS: list[str] = ["1.91", "1.92"]
4642

4743
_RUST_SL16_VERSIONS: list[str] = ["1.91", "1.92"]
4844

49-
_RUST_TW_VERSIONS: list[str] = ["1.91", "1.92"]
45+
_RUST_TW_VERSIONS: list[str] = ["1.92", "1.93"]
5046

5147

5248
def _rust_is_stable_version(os_version: OsVersion, rust_version: str) -> bool:

0 commit comments

Comments
 (0)