-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.5.0-DEV-e0740fe5a6.log
1294 lines (1228 loc) · 101 KB
/
1.5.0-DEV-e0740fe5a6.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Julia Version 1.5.0-DEV.147
Commit e0740fe5a6 (2020-01-24 14:13 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-8.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed UnicodeFun ────────────────── v0.4.0
Installed PooledArrays ──────────────── v0.5.3
Installed PaddedViews ───────────────── v0.5.1
Installed FreeTypeAbstraction ───────── v0.4.2
Installed FixedPointNumbers ─────────── v0.7.1
Installed Observables ───────────────── v0.2.3
Installed Colors ────────────────────── v0.11.2
Installed Requires ──────────────────── v1.0.0
Installed ImageMagick_jll ───────────── v6.9.10-12+0
Installed TableTraits ───────────────── v1.0.0
Installed JpegTurbo_jll ─────────────── v2.0.1+0
Installed Missings ──────────────────── v0.4.3
Installed IteratorInterfaceExtensions ─ v1.0.0
Installed StatsBase ─────────────────── v0.32.0
Installed OrderedCollections ────────── v1.1.0
Installed StructArrays ──────────────── v0.4.1
Installed OpenSpecFun_jll ───────────── v0.5.3+1
Installed Tables ────────────────────── v0.2.11
Installed SignedDistanceFields ──────── v0.4.0
Installed IntervalSets ──────────────── v0.3.2
Installed Reexport ──────────────────── v0.2.0
Installed ImageMagick ───────────────── v1.1.2
Installed JSON ──────────────────────── v0.21.0
Installed Graphics ──────────────────── v1.0.1
Installed AbstractPlotting ──────────── v0.9.17
Installed OffsetArrays ──────────────── v1.0.2
Installed NaNMath ───────────────────── v0.3.3
Installed Libtiff_jll ───────────────── v4.0.10+0
Installed Packing ───────────────────── v0.3.0
Installed Zlib_jll ──────────────────── v1.2.11+7
Installed DataStructures ────────────── v0.17.9
Installed DataAPI ───────────────────── v1.1.0
Installed PlotUtils ─────────────────── v0.6.2
Installed DocStringExtensions ───────── v0.8.1
Installed StaticArrays ──────────────── v0.12.1
Installed DataValueInterfaces ───────── v1.0.0
Installed ColorVectorSpace ──────────── v0.8.2
Installed BinaryProvider ────────────── v0.5.8
Installed Parsers ───────────────────── v0.3.10
Installed SpecialFunctions ──────────── v0.9.0
Installed GeometryTypes ─────────────── v0.7.7
Installed MappedArrays ──────────────── v0.2.2
Installed FreeType ──────────────────── v2.1.1
Installed AbstractNumbers ───────────── v0.2.1
Installed WeakRefStrings ────────────── v0.6.2
Installed Contour ───────────────────── v0.5.1
Installed ColorTypes ────────────────── v0.9.1
Installed Zstd_jll ──────────────────── v1.4.4+0
Installed SortingAlgorithms ─────────── v0.3.1
Installed Showoff ───────────────────── v0.3.1
Installed libpng_jll ────────────────── v1.6.37+2
Installed FileIO ────────────────────── v1.2.1
Installed ColorSchemes ──────────────── v3.5.0
Installed FFMPEG ────────────────────── v0.2.4
Installed ImageCore ─────────────────── v0.8.11
Installed ColorBrewer ───────────────── v0.4.0
Updating `~/.julia/environments/v1.5/Project.toml`
[537997a7] + AbstractPlotting v0.9.17
Updating `~/.julia/environments/v1.5/Manifest.toml`
[85c772de] + AbstractNumbers v0.2.1
[537997a7] + AbstractPlotting v0.9.17
[b99e7846] + BinaryProvider v0.5.8
[a2cac450] + ColorBrewer v0.4.0
[35d6a980] + ColorSchemes v3.5.0
[3da002f7] + ColorTypes v0.9.1
[c3611d14] + ColorVectorSpace v0.8.2
[5ae59095] + Colors v0.11.2
[d38c429a] + Contour v0.5.1
[9a962f9c] + DataAPI v1.1.0
[864edb3b] + DataStructures v0.17.9
[e2d170a0] + DataValueInterfaces v1.0.0
[ffbed154] + DocStringExtensions v0.8.1
[c87230d0] + FFMPEG v0.2.4
[5789e2e9] + FileIO v1.2.1
[53c48c17] + FixedPointNumbers v0.7.1
[b38be410] + FreeType v2.1.1
[663a7486] + FreeTypeAbstraction v0.4.2
[4d00f742] + GeometryTypes v0.7.7
[a2bd30eb] + Graphics v1.0.1
[a09fc81d] + ImageCore v0.8.11
[6218d12a] + ImageMagick v1.1.2
[c73af94c] + ImageMagick_jll v6.9.10-12+0
[8197267c] + IntervalSets v0.3.2
[82899510] + IteratorInterfaceExtensions v1.0.0
[682c06a0] + JSON v0.21.0
[aacddb02] + JpegTurbo_jll v2.0.1+0
[89763e89] + Libtiff_jll v4.0.10+0
[dbb5928d] + MappedArrays v0.2.2
[e1d29d7a] + Missings v0.4.3
[77ba4419] + NaNMath v0.3.3
[510215fc] + Observables v0.2.3
[6fe1bfb0] + OffsetArrays v1.0.2
[efe28fd5] + OpenSpecFun_jll v0.5.3+1
[bac558e1] + OrderedCollections v1.1.0
[19eb6ba3] + Packing v0.3.0
[5432bcbf] + PaddedViews v0.5.1
[69de0a69] + Parsers v0.3.10
[995b91a9] + PlotUtils v0.6.2
[2dfb63ee] + PooledArrays v0.5.3
[189a3867] + Reexport v0.2.0
[ae029012] + Requires v1.0.0
[992d4aef] + Showoff v0.3.1
[73760f76] + SignedDistanceFields v0.4.0
[a2af1166] + SortingAlgorithms v0.3.1
[276daf66] + SpecialFunctions v0.9.0
[90137ffa] + StaticArrays v0.12.1
[2913bbd2] + StatsBase v0.32.0
[09ab397b] + StructArrays v0.4.1
[3783bdb8] + TableTraits v1.0.0
[bd369af6] + Tables v0.2.11
[1cfade01] + UnicodeFun v0.4.0
[ea10d353] + WeakRefStrings v0.6.2
[83775a58] + Zlib_jll v1.2.11+7
[3161d3a3] + Zstd_jll v1.4.4+0
[b53b4c65] + libpng_jll v1.6.37+2
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8ba89e20] + Distributed
[b77e0a4c] + InteractiveUtils
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building FreeType → `~/.julia/packages/FreeType/2dE5w/deps/build.log`
Updating `/tmp/jl_vNJxsi/Project.toml`
[no changes]
Updating `/tmp/jl_vNJxsi/Manifest.toml`
[no changes]
Building FFMPEG ──→ `~/.julia/packages/FFMPEG/guN1x/deps/build.log`
Updating `/tmp/jl_VqDYNF/Project.toml`
[no changes]
Updating `/tmp/jl_VqDYNF/Manifest.toml`
[no changes]
Testing AbstractPlotting
Installed ImageTransformations ────── v0.8.3
Installed ModernGL ────────────────── v1.1.2
Installed ParameterizedFunctions ──── v4.2.1
Installed StatsMakie ──────────────── v0.0.7
Installed Distributions ───────────── v0.22.3
Installed DataFrames ──────────────── v0.20.0
Installed ImageFiltering ──────────── v0.6.10
Installed ZipFile ─────────────────── v0.9.1
Installed GLFW ────────────────────── v3.2.1
Installed Makie ───────────────────── v0.9.5
Installed OrdinaryDiffEq ──────────── v5.28.1
Installed GDAL ────────────────────── v1.0.2
Installed DifferentialEquations ───── v6.10.1
Installed Xorg_randrproto_jll ─────── v1.5.0+0
Installed Xorg_libxcb_jll ─────────── v1.13.0+0
Installed MeshIO ──────────────────── v0.3.1
Installed DiffEqCallbacks ─────────── v2.11.0
Installed GLMakie ─────────────────── v0.0.13
Installed MakieGallery ────────────── v0.1.1
Installed Combinatorics ───────────── v1.0.0
Installed CodecZlib ───────────────── v0.6.0
Installed MuladdMacro ─────────────── v0.2.2
Installed Compat ──────────────────── v2.2.0
Installed SyntaxTree ──────────────── v1.0.1
Installed ArrayInterface ──────────── v2.3.1
Installed Xorg_libXext_jll ────────── v1.3.4+0
Installed Xorg_xextproto_jll ──────── v7.3.0+0
Installed SimpleTraits ────────────── v0.9.1
Installed Xorg_libXdmcp_jll ───────── v1.1.3+0
Installed ArrayLayouts ────────────── v0.1.5
Installed Xorg_glproto_jll ────────── v1.4.17+0
Installed Widgets ─────────────────── v0.5.1
Installed InvertedIndices ─────────── v1.0.0
Installed FiniteDiff ──────────────── v2.0.0
Installed Xorg_xineramaproto_jll ──── v1.2.1+0
Installed FilePathsBase ───────────── v0.7.0
Installed Inflate ─────────────────── v0.1.1
Installed ImageAxes ───────────────── v0.6.2
Installed IntelOpenMP_jll ─────────── v2018.0.3+0
Installed DelayDiffEq ─────────────── v5.20.0
Installed IdentityRanges ──────────── v0.3.1
Installed Distances ───────────────── v0.8.2
Installed Xorg_fixesproto_jll ─────── v5.0.0+0
Installed ImageMetadata ───────────── v0.9.0
Installed Xorg_kbproto_jll ────────── v1.0.7+0
Installed StatsFuns ───────────────── v0.9.3
Installed MultiScaleArrays ────────── v1.6.0
Installed ForwardDiff ─────────────── v0.10.9
Installed TreeViews ───────────────── v0.3.0
Installed Loess ───────────────────── v0.5.0
Installed Xorg_libXfixes_jll ──────── v5.0.3+0
Installed ResettableStacks ────────── v1.0.0
Installed Mocking ─────────────────── v0.7.0
Installed ExponentialUtilities ────── v1.6.0
Installed Polynomials ─────────────── v0.6.0
Installed RDatasets ───────────────── v0.6.6
Installed Xorg_libXrender_jll ─────── v0.9.10+0
Installed AbstractFFTs ────────────── v0.5.0
Installed PositiveFactorizations ──── v0.2.3
Installed CustomUnitRanges ────────── v1.0.0
Installed ComputationalResources ──── v0.3.0
Installed TimeZones ───────────────── v1.0.0
Installed RecipesBase ─────────────── v0.7.0
Installed SymEngine ───────────────── v0.7.1
Installed ChainRulesCore ──────────── v0.5.5
Installed NLSolversBase ───────────── v7.6.0
Installed RecursiveArrayTools ─────── v2.0.4
Installed IterativeSolvers ────────── v0.8.1
Installed DiffEqBase ──────────────── v6.13.0
Installed Optim ───────────────────── v0.20.0
Installed Libglvnd_jll ────────────── v1.2.0+1
Installed VertexSafeGraphs ────────── v0.1.1
Installed CommonSubexpressions ────── v0.2.0
Installed KernelDensity ───────────── v0.5.1
Installed FreqTables ──────────────── v0.3.1
Installed FillArrays ──────────────── v0.8.4
Installed DiffEqFinancial ─────────── v2.2.1
Installed DiffEqJump ──────────────── v6.5.0
Installed Xorg_inputproto_jll ─────── v2.3.2+0
Installed Xorg_libpthread_stubs_jll ─ v0.1.0+0
Installed QuadGK ──────────────────── v2.3.1
Installed FunctionWrappers ────────── v1.0.0
Installed CategoricalArrays ───────── v0.7.7
Installed StochasticDiffEq ────────── v6.18.0
Installed OpenBLAS_jll ────────────── v0.3.7+4
Installed ZygoteRules ─────────────── v0.2.0
Installed Xorg_libXau_jll ─────────── v1.0.9+0
Installed Xorg_libXinerama_jll ────── v1.1.4+0
Installed CatIndices ──────────────── v0.2.1
Installed MKL_jll ─────────────────── v2019.0.117+2
Installed XML2_jll ────────────────── v2.9.9+1
Installed FFTW_jll ────────────────── v3.3.9+3
Installed CSV ─────────────────────── v0.5.22
Installed IndirectArrays ──────────── v0.5.1
Installed LineSearches ────────────── v7.0.1
Installed ArnoldiMethod ───────────── v0.0.4
Installed Xorg_libXcursor_jll ─────── v1.2.0+0
Installed GLFW_jll ────────────────── v3.3.0+1
Installed Xorg_libX11_jll ─────────── v1.6.8+0
Installed IterTools ───────────────── v1.3.0
Installed RangeArrays ─────────────── v0.3.2
Installed SteadyStateDiffEq ───────── v1.5.0
Installed Highlights ──────────────── v0.4.5
Installed Ratios ──────────────────── v0.3.1
Installed MacroTools ──────────────── v0.5.3
Installed FFTW ────────────────────── v1.2.0
Installed Libiconv_jll ────────────── v1.16.0+0
Installed TiledIteration ──────────── v0.2.4
Installed LightGraphs ─────────────── v1.3.0
Installed X11_jll ─────────────────── v1.6.8+4
Installed Xorg_renderproto_jll ────── v0.11.1+0
Installed DiffEqNoiseProcess ──────── v3.8.0
Installed DiffRules ───────────────── v1.0.0
Installed WoodburyMatrices ────────── v0.5.0
Installed Xorg_libXrandr_jll ──────── v1.5.2+0
Installed RandomNumbers ───────────── v1.4.0
Installed BoundaryValueDiffEq ─────── v2.4.0
Installed Rotations ───────────────── v0.13.0
Installed DimensionalPlotRecipes ──── v1.0.0
Installed NLsolve ─────────────────── v4.3.0
Installed TranscodingStreams ──────── v0.9.5
Installed DiffEqPhysics ───────────── v3.4.0
Installed Parameters ──────────────── v0.12.0
Installed Xorg_util_macros_jll ────── v1.19.2+0
Installed Libgcrypt_jll ───────────── v1.8.5+0
Installed PoissonRandom ───────────── v0.4.0
Installed FFTViews ────────────────── v0.3.1
Installed Xorg_xproto_jll ─────────── v7.0.31+0
Installed RecursiveFactorization ──── v0.1.0
Installed Sundials ────────────────── v3.8.1
Installed BandedMatrices ──────────── v0.14.2
Installed Xorg_xcb_proto_jll ──────── v1.13.0+0
Installed CoordinateTransformations ─ v0.5.0
Installed Arpack ──────────────────── v0.4.0
Installed AxisAlgorithms ──────────── v1.0.0
Installed Documenter ──────────────── v0.24.4
Installed Roots ───────────────────── v0.8.4
Installed GenericSVD ──────────────── v0.2.2
Installed DiffEqDiffTools ─────────── v1.7.0
Installed CEnum ───────────────────── v0.2.0
Installed PDMats ──────────────────── v0.9.11
Installed RData ───────────────────── v0.6.3
Installed Libgpg_error_jll ────────── v1.36.0+0
Installed EzXML ───────────────────── v1.1.0
Installed Xorg_libXi_jll ──────────── v1.7.10+0
Installed SparseDiffTools ─────────── v1.2.0
Installed Adapt ───────────────────── v1.0.0
Installed Arpack_jll ──────────────── v3.5.0+2
Installed Xorg_xtrans_jll ─────────── v1.4.0+0
Installed Rmath ───────────────────── v0.6.0
Installed NamedArrays ─────────────── v0.9.3
Installed DiffResults ─────────────── v1.0.2
Installed Interpolations ──────────── v0.12.7
Installed AxisArrays ──────────────── v0.3.3
Installed XSLT_jll ────────────────── v1.1.33+0
Updating `/tmp/jl_vE79aW/Project.toml`
[a93c6f00] + DataFrames v0.20.0
[0c46a032] + DifferentialEquations v6.10.1
[31c24e10] + Distributions v0.22.3
[add2ef01] + GDAL v1.0.2
[f7f18e0c] + GLFW v3.2.1
[e9467ef8] + GLMakie v0.0.13
[6a3955dd] + ImageFiltering v0.6.10
[02fcd773] + ImageTransformations v0.8.3
[ee78f7c6] + Makie v0.9.5
[dbd62bd0] + MakieGallery v0.1.1
[7269a6da] + MeshIO v0.3.1
[66fc600b] + ModernGL v1.1.2
[1dea7af3] + OrdinaryDiffEq v5.28.1
[65888b18] + ParameterizedFunctions v4.2.1
[ce6b1742] + RDatasets v0.6.6
[65254759] + StatsMakie v0.0.7
[a5390f91] + ZipFile v0.9.1
Updating `/tmp/jl_vE79aW/Manifest.toml`
[621f4979] + AbstractFFTs v0.5.0
[79e6a3ab] + Adapt v1.0.0
[ec485272] + ArnoldiMethod v0.0.4
[7d9fca2a] + Arpack v0.4.0
[68821587] + Arpack_jll v3.5.0+2
[4fba245c] + ArrayInterface v2.3.1
[4c555306] + ArrayLayouts v0.1.5
[13072b0f] + AxisAlgorithms v1.0.0
[39de3d68] + AxisArrays v0.3.3
[aae01518] + BandedMatrices v0.14.2
[764a87c0] + BoundaryValueDiffEq v2.4.0
[fa961155] + CEnum v0.2.0
[336ed68f] + CSV v0.5.22
[aafaddc9] + CatIndices v0.2.1
[324d7699] + CategoricalArrays v0.7.7
[d360d2e6] + ChainRulesCore v0.5.5
[944b1d66] + CodecZlib v0.6.0
[861a8166] + Combinatorics v1.0.0
[bbf7d656] + CommonSubexpressions v0.2.0
[34da2185] + Compat v2.2.0
[ed09eef8] + ComputationalResources v0.3.0
[150eb455] + CoordinateTransformations v0.5.0
[dc8bdbbb] + CustomUnitRanges v1.0.0
[a93c6f00] + DataFrames v0.20.0
[bcd4f6db] + DelayDiffEq v5.20.0
[2b5f629d] + DiffEqBase v6.13.0
[459566f4] + DiffEqCallbacks v2.11.0
[01453d9d] + DiffEqDiffTools v1.7.0
[5a0ffddc] + DiffEqFinancial v2.2.1
[c894b116] + DiffEqJump v6.5.0
[77a26b50] + DiffEqNoiseProcess v3.8.0
[055956cb] + DiffEqPhysics v3.4.0
[163ba53b] + DiffResults v1.0.2
[b552c78f] + DiffRules v1.0.0
[0c46a032] + DifferentialEquations v6.10.1
[c619ae07] + DimensionalPlotRecipes v1.0.0
[b4f34e82] + Distances v0.8.2
[31c24e10] + Distributions v0.22.3
[e30172f5] + Documenter v0.24.4
[d4d017d3] + ExponentialUtilities v1.6.0
[8f5d6c58] + EzXML v1.1.0
[4f61f5a4] + FFTViews v0.3.1
[7a1cc6ca] + FFTW v1.2.0
[f5851436] + FFTW_jll v3.3.9+3
[48062228] + FilePathsBase v0.7.0
[1a297f60] + FillArrays v0.8.4
[6a86dc24] + FiniteDiff v2.0.0
[f6369f11] + ForwardDiff v0.10.9
[da1fdf0e] + FreqTables v0.3.1
[069b7b12] + FunctionWrappers v1.0.0
[add2ef01] + GDAL v1.0.2
[f7f18e0c] + GLFW v3.2.1
[0656b61e] + GLFW_jll v3.3.0+1
[e9467ef8] + GLMakie v0.0.13
[01680d73] + GenericSVD v0.2.2
[eafb193a] + Highlights v0.4.5
[bbac6d45] + IdentityRanges v0.3.1
[2803e5a7] + ImageAxes v0.6.2
[6a3955dd] + ImageFiltering v0.6.10
[bc367c6b] + ImageMetadata v0.9.0
[02fcd773] + ImageTransformations v0.8.3
[9b13fd28] + IndirectArrays v0.5.1
[d25df0c9] + Inflate v0.1.1
[1d5cc7b8] + IntelOpenMP_jll v2018.0.3+0
[a98d9a8b] + Interpolations v0.12.7
[41ab1584] + InvertedIndices v1.0.0
[c8e1da08] + IterTools v1.3.0
[42fd0dbc] + IterativeSolvers v0.8.1
[5ab0869b] + KernelDensity v0.5.1
[d4300ac3] + Libgcrypt_jll v1.8.5+0
[7e76a0d4] + Libglvnd_jll v1.2.0+1
[7add5ba3] + Libgpg_error_jll v1.36.0+0
[94ce4f54] + Libiconv_jll v1.16.0+0
[093fc24a] + LightGraphs v1.3.0
[d3d80556] + LineSearches v7.0.1
[4345ca2d] + Loess v0.5.0
[856f044c] + MKL_jll v2019.0.117+2
[1914dd2f] + MacroTools v0.5.3
[ee78f7c6] + Makie v0.9.5
[dbd62bd0] + MakieGallery v0.1.1
[7269a6da] + MeshIO v0.3.1
[78c3b35d] + Mocking v0.7.0
[66fc600b] + ModernGL v1.1.2
[46d2c3a1] + MuladdMacro v0.2.2
[f9640e96] + MultiScaleArrays v1.6.0
[d41bc354] + NLSolversBase v7.6.0
[2774e3e8] + NLsolve v4.3.0
[86f7a689] + NamedArrays v0.9.3
[4536629a] + OpenBLAS_jll v0.3.7+4
[429524aa] + Optim v0.20.0
[1dea7af3] + OrdinaryDiffEq v5.28.1
[90014a1f] + PDMats v0.9.11
[65888b18] + ParameterizedFunctions v4.2.1
[d96e819e] + Parameters v0.12.0
[e409e4f3] + PoissonRandom v0.4.0
[f27b6e38] + Polynomials v0.6.0
[85a6dd25] + PositiveFactorizations v0.2.3
[1fd47b50] + QuadGK v2.3.1
[df47a6cb] + RData v0.6.3
[ce6b1742] + RDatasets v0.6.6
[e6cf234a] + RandomNumbers v1.4.0
[b3c3ace0] + RangeArrays v0.3.2
[c84ed2f1] + Ratios v0.3.1
[3cdcf5f2] + RecipesBase v0.7.0
[731186ca] + RecursiveArrayTools v2.0.4
[f2c3362d] + RecursiveFactorization v0.1.0
[ae5879a3] + ResettableStacks v1.0.0
[79098fc4] + Rmath v0.6.0
[f2b01f46] + Roots v0.8.4
[6038ab10] + Rotations v0.13.0
[699a6c99] + SimpleTraits v0.9.1
[47a9eef4] + SparseDiffTools v1.2.0
[4c63d2b9] + StatsFuns v0.9.3
[65254759] + StatsMakie v0.0.7
[9672c7b4] + SteadyStateDiffEq v1.5.0
[789caeaf] + StochasticDiffEq v6.18.0
[c3572dad] + Sundials v3.8.1
[123dc426] + SymEngine v0.7.1
[a4af3ec5] + SyntaxTree v1.0.1
[06e1c1a7] + TiledIteration v0.2.4
[f269a46b] + TimeZones v1.0.0
[3bb67fe8] + TranscodingStreams v0.9.5
[a2a6695c] + TreeViews v0.3.0
[19fa3120] + VertexSafeGraphs v0.1.1
[cc8bc4a8] + Widgets v0.5.1
[efce3f68] + WoodburyMatrices v0.5.0
[546b0b6d] + X11_jll v1.6.8+4
[02c8fc9c] + XML2_jll v2.9.9+1
[aed1982a] + XSLT_jll v1.1.33+0
[cf2f014d] + Xorg_fixesproto_jll v5.0.0+0
[41595b7c] + Xorg_glproto_jll v1.4.17+0
[84d6cd60] + Xorg_inputproto_jll v2.3.2+0
[060dd47b] + Xorg_kbproto_jll v1.0.7+0
[4f6342f7] + Xorg_libX11_jll v1.6.8+0
[0c0b7dd1] + Xorg_libXau_jll v1.0.9+0
[935fb764] + Xorg_libXcursor_jll v1.2.0+0
[a3789734] + Xorg_libXdmcp_jll v1.1.3+0
[1082639a] + Xorg_libXext_jll v1.3.4+0
[d091e8ba] + Xorg_libXfixes_jll v5.0.3+0
[a51aa0fd] + Xorg_libXi_jll v1.7.10+0
[d1454406] + Xorg_libXinerama_jll v1.1.4+0
[ec84b674] + Xorg_libXrandr_jll v1.5.2+0
[ea2f1a96] + Xorg_libXrender_jll v0.9.10+0
[14d82f49] + Xorg_libpthread_stubs_jll v0.1.0+0
[c7cfdc94] + Xorg_libxcb_jll v1.13.0+0
[0e394dc1] + Xorg_randrproto_jll v1.5.0+0
[21e99dc2] + Xorg_renderproto_jll v0.11.1+0
[7c09cfe3] + Xorg_util_macros_jll v1.19.2+0
[c2e9c405] + Xorg_xcb_proto_jll v1.13.0+0
[d13bc2ba] + Xorg_xextproto_jll v7.3.0+0
[6a3da44c] + Xorg_xineramaproto_jll v1.2.1+0
[46797783] + Xorg_xproto_jll v7.0.31+0
[c5fb5394] + Xorg_xtrans_jll v1.4.0+0
[a5390f91] + ZipFile v0.9.1
[700de1a5] + ZygoteRules v0.2.0
[8bb1440f] + DelimitedFiles
[9fa8497b] + Future
[1a1011a3] + SharedArrays
[4607b0f0] + SuiteSparse
Building ModernGL ─→ `~/.julia/packages/ModernGL/rVuW2/deps/build.log`
Updating `/tmp/jl_5GqmvA/Project.toml`
[no changes]
Updating `/tmp/jl_5GqmvA/Manifest.toml`
[no changes]
Building GDAL ─────→ `~/.julia/packages/GDAL/cvf6T/deps/build.log`
Updating `/tmp/jl_rgaeZJ/Project.toml`
[no changes]
Updating `/tmp/jl_rgaeZJ/Manifest.toml`
[no changes]
Building GLMakie ──→ `~/.julia/packages/GLMakie/tywRm/deps/build.log`
Updating `/tmp/jl_FFXsRC/Project.toml`
[no changes]
Updating `/tmp/jl_FFXsRC/Manifest.toml`
[no changes]
Building CodecZlib → `~/.julia/packages/CodecZlib/5t9zO/deps/build.log`
Updating `/tmp/jl_FCiwWj/Project.toml`
[no changes]
Updating `/tmp/jl_FCiwWj/Manifest.toml`
[no changes]
Building TimeZones → `~/.julia/packages/TimeZones/vYAiM/deps/build.log`
Updating `/tmp/jl_5j7GQj/Project.toml`
[no changes]
Updating `/tmp/jl_5j7GQj/Manifest.toml`
[no changes]
Building SymEngine → `~/.julia/packages/SymEngine/RK5Ks/deps/build.log`
Updating `/tmp/jl_HEWTl2/Project.toml`
[no changes]
Updating `/tmp/jl_HEWTl2/Manifest.toml`
[no changes]
Building FFTW ─────→ `~/.julia/packages/FFTW/qqcBj/deps/build.log`
Updating `/tmp/jl_fChb9q/Project.toml`
[no changes]
Updating `/tmp/jl_fChb9q/Manifest.toml`
[no changes]
Building Sundials ─→ `~/.julia/packages/Sundials/MllUG/deps/build.log`
Updating `/tmp/jl_3SxuYR/Project.toml`
[no changes]
Updating `/tmp/jl_3SxuYR/Manifest.toml`
[no changes]
Building Rmath ────→ `~/.julia/packages/Rmath/BoBag/deps/build.log`
Updating `/tmp/jl_FzRx5A/Project.toml`
[no changes]
Updating `/tmp/jl_FzRx5A/Manifest.toml`
[no changes]
Running sandbox
Status `/tmp/jl_vE79aW/Project.toml`
[85c772de] AbstractNumbers v0.2.1
[537997a7] AbstractPlotting v0.9.17
[a2cac450] ColorBrewer v0.4.0
[35d6a980] ColorSchemes v3.5.0
[3da002f7] ColorTypes v0.9.1
[c3611d14] ColorVectorSpace v0.8.2
[5ae59095] Colors v0.11.2
[d38c429a] Contour v0.5.1
[a93c6f00] DataFrames v0.20.0
[0c46a032] DifferentialEquations v6.10.1
[31c24e10] Distributions v0.22.3
[ffbed154] DocStringExtensions v0.8.1
[c87230d0] FFMPEG v0.2.4
[5789e2e9] FileIO v1.2.1
[53c48c17] FixedPointNumbers v0.7.1
[b38be410] FreeType v2.1.1
[663a7486] FreeTypeAbstraction v0.4.2
[add2ef01] GDAL v1.0.2
[f7f18e0c] GLFW v3.2.1
[e9467ef8] GLMakie v0.0.13
[4d00f742] GeometryTypes v0.7.7
[a09fc81d] ImageCore v0.8.11
[6a3955dd] ImageFiltering v0.6.10
[6218d12a] ImageMagick v1.1.2
[02fcd773] ImageTransformations v0.8.3
[8197267c] IntervalSets v0.3.2
[ee78f7c6] Makie v0.9.5
[dbd62bd0] MakieGallery v0.1.1
[7269a6da] MeshIO v0.3.1
[66fc600b] ModernGL v1.1.2
[510215fc] Observables v0.2.3
[1dea7af3] OrdinaryDiffEq v5.28.1
[19eb6ba3] Packing v0.3.0
[65888b18] ParameterizedFunctions v4.2.1
[995b91a9] PlotUtils v0.6.2
[ce6b1742] RDatasets v0.6.6
[992d4aef] Showoff v0.3.1
[73760f76] SignedDistanceFields v0.4.0
[90137ffa] StaticArrays v0.12.1
[65254759] StatsMakie v0.0.7
[09ab397b] StructArrays v0.4.1
[1cfade01] UnicodeFun v0.4.0
[a5390f91] ZipFile v0.9.1
[2a0f44e3] Base64
[37e2e46d] LinearAlgebra
[d6f4376e] Markdown
[44cfe95a] Pkg
[de0858da] Printf
[9a3f8284] Random
[9e88b42a] Serialization
[2f01184e] SparseArrays
[10745b16] Statistics
[8dfed614] Test
OPENGL = true
MINIMAL = "false"
[ Info: OpenGL detected
Test Summary: | Pass Total
Conversions | 1 1
Test Summary: | Pass Total
Quaternions | 8 8
Test Summary: | Pass Total
Projection math | 2 2
[ Info: Caching fonts, this may take a while. Needed only on first run!
Test Summary: | Pass Total
basic functionality | 3 3
[ Info: Running full tests - artifacts will be stored!
[ Info: starting from index 1
┌ Warning: Package MakieGallery does not have Makie in its dependencies:
│ - If you have MakieGallery checked out for development and have
│ added Makie as a dependency but haven't updated your primary
│ environment's manifest file, try `Pkg.resolve()`.
│ - Otherwise you may need to report an issue with MakieGallery
└ Loading Makie into MakieGallery from project dependency, future warnings for MakieGallery are suppressed.
Running tutorial_simple_scatter
Running tutorial_markersize
Running tutorial_simple_line
Running tutorial_adding_to_a_scene
Running tutorial_removing_from_a_scene
Running tutorial_adjusting_scene_limits
Running tutorial_basic_theming
Running tutorial_heatmap
Running tutorial_linesegments
Running tutorial_barplot
Running tutorial_title
Running tutorial_plot_transformation
┌ Warning: Example Animated time series failed
│ exception =
│ LoadError: UndefVarError: frame_start not defined
│ in expression starting at animated_time_series:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using Makie
f0 = 1/2; fs = 100;
winsec = 4; hopsec = 1/60
nwin = round(Integer, winsec*fs)
nhop = round(Integer, hopsec*fs)
# do the loop
frame_start = -winsec
frame_time = collect((0:(nwin-1)) * (1/fs))
aframe = sin.(2*pi*f0.*(frame_start .+ frame_time))
scene = lines(frame_start .+ frame_time, aframe)
center!(scene)
lineplot = scene[end]
fix = 0
record(scene, "/home/pkgeval/.julia/packages/AbstractPlotting/3uXXp/test/test_recordings/tmp/animated_time_series.mp4", 1:50) do i
global frame_start
aframe .= sin.(2*pi*f0.*(frame_start .+ frame_time))
# append!(aframe, randn(nhop)); deleteat!(aframe, 1:nhop)
lineplot[1] = frame_start .+ frame_time
lineplot[2] = aframe
AbstractPlotting.update_limits!(scene)
AbstractPlotting.update!(scene)
sleep(hopsec)
frame_start += hopsec
end
Running animated_time_series
┌ Warning: Error thrown when evaluating Animated time series
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Animated time series: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running test_heatmap___image_overlap
Running animation
Running barplot_1
Running poly_and_colormap
Running quiver_1
Running arrows_on_hemisphere
Running image_1
Running scatter_colormap
Running lots_of_heatmaps
Running fem_polygon_2d
Running fem_mesh_2d
Running colored_triangle
Running heatmap_interpolation
Running colored_triangle_1
Running subscenes
Running scale_plot
Running polygons
Running contour_function
Running hbox_1
Running customize_axes
Running contour_1
Running heatmap_1
Running animated_scatter
Running text_annotation
┌ Warning: Example Text rotation failed
│ exception =
│ LoadError: syntax: `global posis`: posis is a local variable in its enclosing scope
│ in expression starting at text_rotation:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using Makie
scene = Scene()
pos = (500, 500)
posis = Point2f0[]
for r in range(0, stop = 2pi, length = 20)
global pos, posis
p = pos .+ (sin(r)*100.0, cos(r) * 100)
push!(posis, p)
t = text!(
scene, "test",
position = p,
textsize = 50,
rotation = 1.5pi - r,
align = (:center, :center)
)
end
scatter!(scene, posis, markersize = 10)
Running text_rotation
┌ Warning: Error thrown when evaluating Text rotation
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Text rotation: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
┌ Warning: Example The famous iris example failed
│ exception =
│ LoadError: syntax: `global i`: i is a local variable in its enclosing scope
│ in expression starting at the_famous_iris_example:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using Makie
using DataFrames, RDatasets # do Pkg.add.(["DataFrames", "RDatasets"]) if you don't have these packages installed
iris = dataset("datasets", "iris")
x = iris[!, :SepalWidth]
y = iris[!, :SepalLength]
scene = Scene()
colors = [:red, :green, :blue]
i = 1 #color incrementer
for sp in unique(iris[!, :Species])
idx = iris[!, :Species] .== sp
sel = iris[idx, [:SepalWidth, :SepalLength]]
scatter!(scene, sel[:,1], sel[:,2], color = colors[i], limits = FRect(1.5, 4.0, 3.0, 4.0))
global i = i+1
end
scene
axis = scene[Axis] # get axis
xlabel!(scene, "Sepal width")
ylabel!(scene, "Sepal length")
scene
Running the_famous_iris_example
┌ Warning: Error thrown when evaluating The famous iris example
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
The famous iris example: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running chess_game
Running linesegments___colors
┌ Warning: Example Parallel Prefix Sum failed
│ exception =
│ LoadError: TypeError: in import, expected Symbol, got Core.SlotNumber
│ in expression starting at parallel_prefix_sum:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using Makie
import Base: getindex, setindex!, length, size
import Base.+
using GeometryTypes
function prefix_sum(y, func)
l = length(y)
k = ceil(Int, log2(l))
for j=1:k, i=2^j:2^j:min(l, 2^k)
y[i] = func(y[i-2^(j-1)], y[i])
end
for j=(k-1):-1:1, i=3*2^(j-1):2^j:min(l, 2^k)
y[i] = func(y[i-2^(j-1)], y[i])
end
y
end
mutable struct AccessArray <: AbstractArray{Nothing, 1}
length::Int
read::Vector
history::Vector
end
function AccessArray(length, read = [], history = [])
AccessArray(length, read, history)
end
length(A::AccessArray) = A.length
size(A::AccessArray) = (A.length,)
function getindex(A::AccessArray, i)
push!(A.read, i)
return
end
function setindex!(A::AccessArray, x, i)
push!(A.history, (A.read, [i]))
A.read = []
end
+(a::Nothing, b::Nothing)=a
A = prefix_sum(AccessArray(8), +)
function render(A::AccessArray)
olast = depth = 0
for y in A.history
(any(y[1] .≤ olast)) && (depth += 1)
olast = maximum(y[2])
end
maxdepth = depth
olast = depth = 0
C = []
for y in A.history
(any(y[1] .≤ olast)) && (depth += 1)
push!(C, ((y...,), A.length, maxdepth, depth))
olast = maximum(y[2])
end
msize = 0.1
outsize = 0.15
x1 = Point2f0.(first.(first.(first.(C))), last.(C) .+ outsize .+ 0.05)
x2 = Point2f0.(last.(first.(first.(C))), last.(C) .+ outsize .+ 0.05)
x3 = Point2f0.(first.(last.(first.(C))), last.(C) .+ 1)
connections = Point2f0[]
yoff = Point2f0(0, msize / 2)
ooff = Point2f0(0, outsize / 2 + 0.05)
for i = 1:length(x3)
push!(connections, x3[i] .- ooff, x1[i] .+ yoff, x3[i] .- ooff, x2[i] .+ yoff)
end
node_theme = Theme(
markersize = msize, strokewidth = 3,
strokecolor = :black, color = (:white, 0.0),
axis = (
ticks = (ranges = (1:8, 1:5),),
names = (axisnames = ("Array Index", "Depth"),),
frame = (axis_position = :none,)
)
)
s = scatter(node_theme, x1)
scatter!(node_theme, x2)
scatter!(x3, color = :white, markersize = 0.2, strokewidth = 4, strokecolor = :black)
scatter!(x3, color = :red, marker = '+', markersize = outsize)
linesegments!(connections, color = :red)
s
end
render(A)
Running parallel_prefix_sum
┌ Warning: Error thrown when evaluating Parallel Prefix Sum
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Parallel Prefix Sum: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running cobweb_plot
Running streamplot_animation
Running line_with_varying_colors
Running viridis_color_scheme
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, 0.0] .. Float32[NaN, NaN, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/3uXXp/src/scenes.jl:562
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
┌ Warning: Founds 0 width in scene limits: Float32[3.5381541, 0.0, 0.0] .. Float32[3.5381541, 0.0, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/3uXXp/src/scenes.jl:576
┌ Warning: Founds 0 width in scene limits: Float32[3.5381541, 0.0, 0.0] .. Float32[3.5381541, 0.0, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/3uXXp/src/scenes.jl:576
Running timeseries_1
Running line_changing_colour
Running line_changing_colour_with_observables
┌ Warning: Example Colormap collection failed
│ exception = UndefVarError: tmpmod not defined
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:556
with source:
using Makie
showlibrary(:Plots)
┌ Warning: Example Colormap collection failed
│ exception = UndefVarError: tmpmod not defined
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:556
with source:
showlibrary(:cmocean)
┌ Warning: Example Colormap collection failed
│ exception = UndefVarError: tmpmod not defined
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:556
with source:
showlibrary(:colorcet)
┌ Warning: Example Colormap collection failed
│ exception = UndefVarError: tmpmod not defined
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:556
with source:
showlibrary(:colorbrewer)
┌ Warning: Example Colormap collection failed
│ exception = UndefVarError: tmpmod not defined
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:556
with source:
showlibrary(:misc)
Running colormap_collection
┌ Warning: Mapping to the storage type failed; perhaps your data had out-of-range values?
│ Try `map(clamp01nan, img)` to clamp values to a valid range.
└ @ ImageMagick ~/.julia/packages/ImageMagick/0EUaI/src/ImageMagick.jl:171
Error encountered while saving "/home/pkgeval/.julia/packages/AbstractPlotting/3uXXp/test/test_recordings/colormap_collection/media/image1.jpg".
Fatal error:
┌ Warning: Error thrown when evaluating Colormap collection
│ exception =
│ MethodError: no method matching iterate(::Nothing)
│ Closest candidates are:
│ iterate(!Matched::Core.SimpleVector) at essentials.jl:601
│ iterate(!Matched::Core.SimpleVector, !Matched::Any) at essentials.jl:601
│ iterate(!Matched::ExponentialBackOff) at error.jl:253
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Colormap collection: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Array{Nothing,1}) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running streamplot_1
Running categorical_heatmap