Skip to content

Commit

Permalink
Temporarily disable python 3.12 in PYTHON_CANDIDATES
Browse files Browse the repository at this point in the history
Summary:
Eden is failing reloadconfig on python 3.12 due to import issues
P1722938652
P1722918085

Disable python 3.12 in PYTHON_CANDIDATES until this is resolved

S487049

Reviewed By: genevievehelsel

Differential Revision: D68980086

fbshipit-source-id: 5c6734f8a88c2c204b56b26854a07fc460630350
  • Loading branch information
Chris Dinh authored and facebook-github-bot committed Jan 31, 2025
1 parent c6c595b commit 971ea2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eden/fs/cli_rs/edenfs-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,9 @@ pub fn remove_symlink(path: &Path) -> Result<()> {

#[cfg(windows)]
const PYTHON_CANDIDATES: &[&str] = &[
r"c:\tools\fb-python\fb-python312",
// (T214121626) Temporarily disable python312 due to reloadconfig issues
// S487049
// r"c:\tools\fb-python\fb-python312",
r"c:\tools\fb-python\fb-python310",
r"c:\Python310",
];
Expand Down

0 comments on commit 971ea2d

Please sign in to comment.