Skip to content

Commit

Permalink
Add Rust 1.83
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkmueller committed Jan 9, 2025
1 parent 85cd958 commit 7775b40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bci_build/package/rust.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
# and we give us three weeks of buffer, leading to release date + 6 + 6 + 3
_RUST_SUPPORT_OVERLAP: datetime.timedelta = datetime.timedelta(weeks=6 + 6 + 3)
_RUST_SUPPORT_ENDS = {
"1.83": datetime.date(2024, 11, 28) + _RUST_SUPPORT_OVERLAP,
"1.82": datetime.date(2024, 10, 17) + _RUST_SUPPORT_OVERLAP,
"1.81": datetime.date(2024, 9, 5) + _RUST_SUPPORT_OVERLAP,
"1.80": datetime.date(2024, 7, 25) + _RUST_SUPPORT_OVERLAP,
Expand All @@ -30,7 +31,7 @@
}

# ensure that the **latest** rust version is the last one!
_RUST_VERSIONS = ["1.81", "1.82"]
_RUST_VERSIONS = ["1.82", "1.83"]

assert (
len(_RUST_VERSIONS) == 2
Expand Down

0 comments on commit 7775b40

Please sign in to comment.