-
-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop build info from julia version stored in manifest #2995
Drop build info from julia version stored in manifest #2995
Conversation
See e.g. JuliaRegistries/General#39745 and JuliaRegistries/General#39836 for the motivation. |
src/Operations.jl
Outdated
@@ -302,7 +305,7 @@ function resolve_versions!(env::EnvCache, registries::Vector{Registry.RegistryIn | |||
@warn "julia version requirement for project not satisfied" _module=nothing _file=nothing | |||
end | |||
else | |||
env.manifest.julia_version = VERSION | |||
env.manifest.julia_version = dropbuild(VERSION) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@staticfloat I think the test failures mean that the branch above this is being used in regular pkg usage (where julia_version
isn't supplied in the context) which IIUC shouldn't be happening.
Otherwise, I can't find anywhere else that manifest.julia_version
is set.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you print out the current stack trace in the above branch and run the tests again?
(cherry picked from commit 487fdd1, PR#2995)
(cherry picked from commit 487fdd1, PR#2995)
(cherry picked from commit 487fdd1, PR#2995)
(cherry picked from commit 487fdd1)
Having the full build info was proving too noisy for checked-in manifests on master