@@ -112,7 +112,9 @@ supported ones. A few additional keyword arguments are accept:
112
112
in a future version of this package. Please use it sparingly.
113
113
"""
114
114
function build_tarballs (ARGS , src_name, src_version, sources, script,
115
- platforms, products, dependencies; kwargs... )
115
+ platforms, products, dependencies;
116
+ julia_compat:: String = DEFAULT_JULIA_VERSION_SPEC,
117
+ kwargs... )
116
118
@nospecialize
117
119
# See if someone has passed in `--help`, and if so, give them the
118
120
# assistance they so clearly long for
@@ -247,11 +249,11 @@ function build_tarballs(ARGS, src_name, src_version, sources, script,
247
249
# Dependencies that must be downloaded
248
250
dependencies,
249
251
)
250
- extra_kwargs = extract_kwargs (kwargs, (:julia_compat , : lazy_artifacts , :init_block ))
252
+ extra_kwargs = extract_kwargs (kwargs, (:lazy_artifacts , :init_block ))
251
253
252
254
if meta_json_stream != = nothing
253
255
# If they've asked for the JSON metadata, by all means, give it to them!
254
- dict = get_meta_json (args... ; extra_kwargs... )
256
+ dict = get_meta_json (args... ; extra_kwargs... , julia_compat = julia_compat )
255
257
println (meta_json_stream, JSON. json (dict))
256
258
257
259
if meta_json_stream != = stdout
0 commit comments