We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 85cd958 + 7775b40 commit da4ae65Copy full SHA for da4ae65
1 file changed
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.83": datetime.date(2024, 11, 28) + _RUST_SUPPORT_OVERLAP,
23
"1.82": datetime.date(2024, 10, 17) + _RUST_SUPPORT_OVERLAP,
24
"1.81": datetime.date(2024, 9, 5) + _RUST_SUPPORT_OVERLAP,
25
"1.80": datetime.date(2024, 7, 25) + _RUST_SUPPORT_OVERLAP,
@@ -30,7 +31,7 @@
30
31
}
32
33
# ensure that the **latest** rust version is the last one!
-_RUST_VERSIONS = ["1.81", "1.82"]
34
+_RUST_VERSIONS = ["1.82", "1.83"]
35
36
assert (
37
len(_RUST_VERSIONS) == 2
0 commit comments