Is there a neater way of testing whether upgrade of manifest is necessary than the following?
manifest_path = joinpath(dirname(Base.active_project()), "Manifest.toml")
VERSION >= v"1.7" && isfile(manifest_path) && Base.is_v1_format_manifest(Base.parsed_toml(manifest_path))
Last updated: Nov 06 2024 at 04:40 UTC