File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ $julia -e '
56
56
Pkg.add("Conda"); Pkg.build("Conda"; verbose=true)
57
57
using Conda; env, rc = Conda.ROOTENV, Conda.conda_rc(Conda.ROOTENV)
58
58
Conda.runconda(`config --set auto_update_conda False --file $rc --force`, env)
59
- if Sys.islinux()
59
+ pkgs = if Sys.islinux()
60
60
# see discourse.julialang.org/t/glibcxx-version-not-found/82209/8
61
61
# julia 1.8.3 is built with libstdc++.so.6.0.29, so we must restrict to this version (gcc 11.3.0, not gcc 12.2.0)
62
62
# see gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html
@@ -66,10 +66,11 @@ $julia -e '
66
66
v"3.4.31" => ">=13.1,<14.1",
67
67
# ... keep this up-to-date with gcc 14
68
68
)[Base.BinaryPlatforms.detect_libstdcxx_version()]
69
- Conda.add("libgcc-ng$specs")
70
- Conda.add("libstdcxx-ng$specs")
69
+ ["libgcc-ng$specs", "libstdcxx-ng$specs", "matplotlib"]
70
+ else
71
+ ["matplotlib"]
71
72
end
72
- Conda.add("matplotlib" )
73
+ Conda.add(pkgs )
73
74
Conda.list()
74
75
Pkg.add("PyCall"); Pkg.build("PyCall"; verbose=true)
75
76
'
You can’t perform that action at this time.
0 commit comments