We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 63de124 + 464dec3 commit 91cd722Copy full SHA for 91cd722
src/bci_build/package/rust.py
@@ -19,6 +19,7 @@
19
# and we give us three weeks of buffer, leading to release date + 6 + 6 + 3
20
_RUST_SUPPORT_OVERLAP: datetime.timedelta = datetime.timedelta(weeks=6 + 6 + 3)
21
_RUST_SUPPORT_ENDS = {
22
+ "1.88": datetime.date(2025, 6, 26) + _RUST_SUPPORT_OVERLAP,
23
"1.87": datetime.date(2025, 5, 15) + _RUST_SUPPORT_OVERLAP,
24
"1.86": datetime.date(2025, 4, 3) + _RUST_SUPPORT_OVERLAP,
25
"1.85": datetime.date(2025, 2, 20) + _RUST_SUPPORT_OVERLAP,
@@ -35,7 +36,7 @@
35
36
}
37
38
# ensure that the **latest** rust version is the last one!
-_RUST_VERSIONS = ["1.86", "1.87"]
39
+_RUST_VERSIONS = ["1.87", "1.88"]
40
41
assert len(_RUST_VERSIONS) == 2, (
42
"Only two versions of rust must be supported at the same time"
0 commit comments