You are checking in the manifest, but
- as a general rule, the manifest is version-specific, you can’t expect it to be usable with a different Julia version, and that manifest was created with julia v1.10: StableDistributions.jl/Manifest.toml at 3a6bcfa7d29514471f579ff6e9ce801629f1cfc2 · jaksle/StableDistributions.jl · GitHub
- more to the point above, the format of the manifest changed over time (remember it’s version-specific anyway?), the format used by your manifest can’t be parsed by previous versions (the new format is versioned, to make handling unsupported formats more graceful, but with older versions of Julia you’ll get errors like the one you found)
- manifests are very useful for running production applications, keeping track of the dependencies used, or for letting other people reproduce the computing environment (including the Julia version, do you still remember the manifest is version-specific?) you used for a pipeline (e.g. a scientific analysis, or such), but inside the repository of a package the manifest is not just useless, it can be actively harmful as it causes the issues you’re experiencing when trying to use different Julia versions.
As a summary of all the above: delete the manifest from the repo of your package and git ignore it ![]()