Hello! I have a customized local Lean project. I followed the README instructions:
project = LocalProject(
directory="/path/to/my/project/", auto_build=False
)
config = LeanREPLConfig(project=project)
For REPL to work, I included it in my project's lakefile.toml
[[require]]
name = "REPL"
git = "https://github.com/leanprover-community/repl"
I already executed lake update successfully, so I turned off auto_build. However, the LeanREPLConfig line triggers the following error:
ValueError: An error occurred while preparing the Lean REPL. The requested Lean version `v4.28.0-rc1` does not match the fetched Lean version in the repository `v4.8.0-rc1`.Please open an issue on GitHub if you think this is a bug.
Is there a way to change the v4.8.0-rc1 setting? My local project is using Lean 4.28.0-rc1. 😺
Hello! I have a customized local Lean project. I followed the README instructions:
For REPL to work, I included it in my project's
lakefile.tomlI already executed
lake updatesuccessfully, so I turned offauto_build. However, theLeanREPLConfigline triggers the following error:Is there a way to change the
v4.8.0-rc1setting? My local project is using Lean4.28.0-rc1. 😺